summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2016-04-22 17:10:12 -0400
committerEric Milkie <milkie@10gen.com>2016-06-01 15:36:05 -0400
commit41c623c24c9d7fdddd73e19262a2a3a929d256cc (patch)
tree1b659f137d4c04ae47b2852aeb4739f970cb71ba
parentee0fe8abde8354fffb4b03c0a018a54978690046 (diff)
downloadmongo-41c623c24c9d7fdddd73e19262a2a3a929d256cc.tar.gz
SERVER-23886 raise indexbg_drop.js timeout for building indexes
(cherry picked from commit 5f7c803e8dba959e5da4135b76a1d1e05d75636d)
-rw-r--r--jstests/noPassthroughWithMongod/indexbg_drop.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/indexbg_drop.js b/jstests/noPassthroughWithMongod/indexbg_drop.js
index c84ba34a3dd..ac5783525a6 100644
--- a/jstests/noPassthroughWithMongod/indexbg_drop.js
+++ b/jstests/noPassthroughWithMongod/indexbg_drop.js
@@ -86,7 +86,7 @@ assert.soon(function() {
jsTest.log("dropping index");
masterDB.runCommand({dropIndexes: collection, index: "*"});
jsTest.log("Waiting on replication");
-replTest.awaitReplication();
+replTest.awaitReplication(60000);
print("index list on master:");
masterDB.getCollection(collection).getIndexes().forEach(printjson);