summaryrefslogtreecommitdiff
path: root/jstests/replsets
diff options
context:
space:
mode:
authorJason Chan <jason.chan@mongodb.com>2017-07-21 13:13:18 -0400
committerJason Chan <jason.chan@mongodb.com>2017-08-11 16:25:04 -0400
commit0d3137df3879e86d92904309e968f25529904639 (patch)
tree4c235dea6963452a90b69afbe1cc9d9b19464aa7 /jstests/replsets
parent9ab84fb795502c2a362fe74e4d438a952433d41a (diff)
downloadmongo-0d3137df3879e86d92904309e968f25529904639.tar.gz
SERVER-29617 replace fetcher with ARM and add numCursors server parameter
Diffstat (limited to 'jstests/replsets')
-rw-r--r--jstests/replsets/initial_sync_capped_index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jstests/replsets/initial_sync_capped_index.js b/jstests/replsets/initial_sync_capped_index.js
index 0290e14fdef..2100b6f14bc 100644
--- a/jstests/replsets/initial_sync_capped_index.js
+++ b/jstests/replsets/initial_sync_capped_index.js
@@ -84,7 +84,7 @@
replTest.add();
var secondary = replTest.getSecondary();
- var collectionClonerFailPoint = "initialSyncHangCollectionClonerAfterInitialFind";
+ var collectionClonerFailPoint = "initialSyncHangCollectionClonerAfterHandlingBatchResponse";
// Make the collection cloner pause after its initial 'find' response on the capped collection.
var nss = dbName + "." + cappedCollName;
@@ -98,7 +98,8 @@
jsTestLog("Waiting for the initial 'find' response of capped collection cloner to complete.");
checkLog.contains(
- secondary, "initialSyncHangCollectionClonerAfterInitialFind fail point enabled for " + nss);
+ secondary,
+ "initialSyncHangCollectionClonerAfterHandlingBatchResponse fail point enabled for " + nss);
// Append documents to the capped collection so that the SECONDARY will clone these
// additional documents.