summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/indexbg_drop.js
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-12-30 00:44:57 -0500
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-12-31 12:58:09 -0500
commitcc1ac3b8e3ba813de5321d7b7837865feeedf356 (patch)
tree4cc1357fd304b05e460432f2a8175d9cd9230a39 /jstests/noPassthrough/indexbg_drop.js
parentc1670374064602ea8d76417572a7226aa9f918c8 (diff)
downloadmongo-cc1ac3b8e3ba813de5321d7b7837865feeedf356.tar.gz
SERVER-37498 remove slowBackgroundIndexBuild failpoint
Diffstat (limited to 'jstests/noPassthrough/indexbg_drop.js')
-rw-r--r--jstests/noPassthrough/indexbg_drop.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/noPassthrough/indexbg_drop.js b/jstests/noPassthrough/indexbg_drop.js
index 4e605ce6d7a..78bfb6f3e44 100644
--- a/jstests/noPassthrough/indexbg_drop.js
+++ b/jstests/noPassthrough/indexbg_drop.js
@@ -47,8 +47,8 @@
}
assert.writeOK(bulk.execute({w: 2, wtimeout: replTest.kDefaultTimeoutMS}));
- assert.commandWorked(
- secondDB.adminCommand({configureFailPoint: "slowBackgroundIndexBuild", mode: "alwaysOn"}));
+ assert.commandWorked(secondDB.adminCommand(
+ {configureFailPoint: "hangAfterStartingIndexBuild", mode: "alwaysOn"}));
jsTest.log("Starting background indexing for test of: " + tojson(dc));
@@ -64,7 +64,7 @@
jsTest.log("Waiting on replication");
assert.commandWorked(
- secondDB.adminCommand({configureFailPoint: "slowBackgroundIndexBuild", mode: "off"}));
+ secondDB.adminCommand({configureFailPoint: "hangAfterStartingIndexBuild", mode: "off"}));
replTest.awaitReplication();
print("Index list on master:");