summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/indexbg_drop.js
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-01-04 09:15:22 -0500
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-01-04 09:15:22 -0500
commit0cfba57ca39fc2e96bb003f9d52659d436b3a768 (patch)
tree27d7afa4895220f5121c0fbf82e032c9c227304b /jstests/noPassthrough/indexbg_drop.js
parentff7e8811a933e0ebed74fc2615c6865a91114c62 (diff)
downloadmongo-0cfba57ca39fc2e96bb003f9d52659d436b3a768.tar.gz
Revert "SERVER-37498 remove slowBackgroundIndexBuild failpoint"
This reverts commit 46dd8e03cdef50a4d3b5714619d7a097c9a1578f.
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 78bfb6f3e44..4e605ce6d7a 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: "hangAfterStartingIndexBuild", mode: "alwaysOn"}));
+ assert.commandWorked(
+ secondDB.adminCommand({configureFailPoint: "slowBackgroundIndexBuild", 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: "hangAfterStartingIndexBuild", mode: "off"}));
+ secondDB.adminCommand({configureFailPoint: "slowBackgroundIndexBuild", mode: "off"}));
replTest.awaitReplication();
print("Index list on master:");