summaryrefslogtreecommitdiff
path: root/jstests/ssl/ssl_restricted_protocols.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/ssl/ssl_restricted_protocols.js')
-rw-r--r--jstests/ssl/ssl_restricted_protocols.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/ssl/ssl_restricted_protocols.js b/jstests/ssl/ssl_restricted_protocols.js
index de971b945a4..1ea7c0dd209 100644
--- a/jstests/ssl/ssl_restricted_protocols.js
+++ b/jstests/ssl/ssl_restricted_protocols.js
@@ -10,12 +10,8 @@ var CA_CERT = "jstests/libs/ca.pem";
function runTestWithoutSubset(subset) {
const disabledProtocols = subset.join(",");
- const conn = MongoRunner.runMongod({
- sslMode: 'allowSSL',
- sslPEMKeyFile: SERVER_CERT,
- sslDisabledProtocols: disabledProtocols,
- tlsCAFile: CA_CERT
- });
+ const conn = MongoRunner.runMongod(
+ {sslMode: 'allowSSL', sslPEMKeyFile: SERVER_CERT, sslDisabledProtocols: disabledProtocols});
const exitStatus = runMongoProgram('mongo',
'--ssl',