summaryrefslogtreecommitdiff
path: root/jstests/replsets/initial_sync_invalid_index_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/initial_sync_invalid_index_spec.js')
-rw-r--r--jstests/replsets/initial_sync_invalid_index_spec.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jstests/replsets/initial_sync_invalid_index_spec.js b/jstests/replsets/initial_sync_invalid_index_spec.js
index ce608334e8b..fc6e8dd7f77 100644
--- a/jstests/replsets/initial_sync_invalid_index_spec.js
+++ b/jstests/replsets/initial_sync_invalid_index_spec.js
@@ -22,7 +22,7 @@
{createIndexes: "test", indexes: [{v: 2, name: "x_1", key: {x: 1}, invalidOption: 1}]}));
// Add another node to the replica set to allow an initial sync to occur.
- replTest.add();
+ var init_sync_node = replTest.add();
clearRawMongoProgramOutput();
reInitiateWithoutThrowingOnAbortedMember(replTest);
@@ -36,8 +36,7 @@
};
assert.soon(assertFn, "Initial sync should have aborted on invalid index specification");
- replTest.stopSet(undefined,
- undefined,
- {allowedExitCodes: [MongoRunner.EXIT_ABRUPT, MongoRunner.EXIT_ABORT]});
+ replTest.stop(init_sync_node, undefined, {allowedExitCode: MongoRunner.EXIT_ABRUPT});
+ replTest.stopSet();
})();