diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2020-10-13 14:27:07 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-10-13 23:08:09 +0000 |
commit | bd0d70757b89507312451b9791f81b96b5e35e3d (patch) | |
tree | c867d7a184cc5f40ed119464bdf3c02f40657a66 /jstests/sslSpecial | |
parent | 9b519f5f01cfa98636b061785acdaf58a3dfcf77 (diff) | |
download | mongo-bd0d70757b89507312451b9791f81b96b5e35e3d.tar.gz |
SERVER-51514 ProgramRunner::launchProcess() should escape backslashes on Windows
Diffstat (limited to 'jstests/sslSpecial')
-rw-r--r-- | jstests/sslSpecial/x509_cluster_auth_rollover.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sslSpecial/x509_cluster_auth_rollover.js b/jstests/sslSpecial/x509_cluster_auth_rollover.js index b9d51c1ced3..15412f7b3bb 100644 --- a/jstests/sslSpecial/x509_cluster_auth_rollover.js +++ b/jstests/sslSpecial/x509_cluster_auth_rollover.js @@ -34,7 +34,7 @@ rst.nodes.forEach((node) => { // All the certificates' DNs share this base const dnBase = "C=US, ST=New York, L=New York,"; // This is the DN of the rollover certificate. -const rolloverDN = dnBase + " O=MongoDB\\, Inc. (Rollover), OU=Kernel (Rollover), CN=server"; +const rolloverDN = dnBase + " O=MongoDB Inc. (Rollover), OU=Kernel (Rollover), CN=server"; // This is the DN of the original certificate const originalDN = dnBase + " O=MongoDB, OU=Kernel, CN=server"; |