summaryrefslogtreecommitdiff
path: root/jstests/replsets/initial_sync_during_stepdown.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/initial_sync_during_stepdown.js')
-rw-r--r--jstests/replsets/initial_sync_during_stepdown.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/replsets/initial_sync_during_stepdown.js b/jstests/replsets/initial_sync_during_stepdown.js
index 342d57d141d..fc3c00564e7 100644
--- a/jstests/replsets/initial_sync_during_stepdown.js
+++ b/jstests/replsets/initial_sync_during_stepdown.js
@@ -48,7 +48,7 @@ function setupTest({
jsTestLog("Enabling failpoint '" + failPoint + "' on primary (sync source).");
assert.commandWorked(primary.adminCommand({
configureFailPoint: failPoint,
- data: {nss: nss + nssSuffix, shouldCheckForInterrupt: true, shouldNotdropLock: true},
+ data: {nss: nss + nssSuffix, shouldCheckForInterrupt: true},
mode: "alwaysOn"
}));
@@ -164,7 +164,7 @@ assert.commandWorked(primaryColl.insert([{_id: 3}, {_id: 4}]));
// such that it doesn't drop locks when getmore cmd waits inside the fail point block.
assert.commandWorked(primary.adminCommand({
configureFailPoint: "waitWithPinnedCursorDuringGetMoreBatch",
- data: {nss: oplogNss, shouldCheckForInterrupt: true, shouldNotdropLock: true},
+ data: {nss: oplogNss, shouldCheckForInterrupt: true},
mode: "alwaysOn"
}));