summaryrefslogtreecommitdiff
path: root/jstests/sslSpecial
diff options
context:
space:
mode:
authorMisha Tyulenev <misha@mongodb.com>2017-10-04 11:47:20 -0400
committerMisha Tyulenev <misha@mongodb.com>2017-10-04 11:47:36 -0400
commit763e9a4a675668ba3c0d3836321f53c77950cc53 (patch)
tree119619684242539d773a1fca210e0e5301d3aa27 /jstests/sslSpecial
parent1fda1c2a8855c2b5c29859c80ced8d091de26eb3 (diff)
downloadmongo-763e9a4a675668ba3c0d3836321f53c77950cc53.tar.gz
SERVER-31327 Set ReplSetTest:waitForKeys default to true
Diffstat (limited to 'jstests/sslSpecial')
-rw-r--r--jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js b/jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js
index 5c8467e3be5..11281c4c6f8 100644
--- a/jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js
+++ b/jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js
@@ -37,7 +37,8 @@ opts = {
keyFile: KEYFILE
};
var NUM_NODES = 3;
-var rst = new ReplSetTest({name: 'sslSet', nodes: NUM_NODES, nodeOptions: opts});
+var rst =
+ new ReplSetTest({name: 'sslSet', nodes: NUM_NODES, waitForKeys: false, nodeOptions: opts});
rst.startSet();
// ReplSetTest.initiate() requires all nodes to be to be authorized to run replSetGetStatus.