diff options
author | Matthew Russotto <matthew.russotto@10gen.com> | 2019-02-04 17:57:00 -0500 |
---|---|---|
committer | Matthew Russotto <matthew.russotto@10gen.com> | 2019-02-12 11:07:46 -0500 |
commit | c3a72d61dc8ab4aa32fae400c74b06360a572537 (patch) | |
tree | 644f7b08bafd1e3d8e0a7ca856093c50c97ed3ff /jstests/replsets/initial_sync_during_stepdown.js | |
parent | 530a26bc5387de3dd131a18801a6c3253c4f3220 (diff) | |
download | mongo-c3a72d61dc8ab4aa32fae400c74b06360a572537.tar.gz |
SERVER-38516 Remove “closeConnectionsOnStepdown” flag and fix tests broken by this
Diffstat (limited to 'jstests/replsets/initial_sync_during_stepdown.js')
-rw-r--r-- | jstests/replsets/initial_sync_during_stepdown.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jstests/replsets/initial_sync_during_stepdown.js b/jstests/replsets/initial_sync_during_stepdown.js index af86780813c..5b8f9ad3b11 100644 --- a/jstests/replsets/initial_sync_during_stepdown.js +++ b/jstests/replsets/initial_sync_during_stepdown.js @@ -11,8 +11,7 @@ const dbName = testName; const collName = "testcoll"; - const rst = new ReplSetTest( - {nodes: [{setParameter: {closeConnectionsOnStepdown: false}}, {rsConfig: {priority: 0}}]}); + const rst = new ReplSetTest({nodes: [{}, {rsConfig: {priority: 0}}]}); rst.startSet(); rst.initiate(); |