summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/indexbg_restart_secondary.js
diff options
context:
space:
mode:
authormatt dannenberg <matt.dannenberg@10gen.com>2014-12-19 10:50:00 -0500
committermatt dannenberg <matt.dannenberg@10gen.com>2014-12-19 10:56:10 -0500
commita0c650616cd8abdd976c9ab5b114d3011e8e6428 (patch)
treed2f0e3534308933bdbc4df4c1791ed240a4ae1e9 /jstests/noPassthroughWithMongod/indexbg_restart_secondary.js
parent35610538e5115e07a2eab0c45df52144b0045b3a (diff)
downloadmongo-a0c650616cd8abdd976c9ab5b114d3011e8e6428.tar.gz
SERVER-16612 extend indexbuilding timeout in noPassthroughWithMongod/indexbg_restart_secondary.js
Diffstat (limited to 'jstests/noPassthroughWithMongod/indexbg_restart_secondary.js')
-rw-r--r--jstests/noPassthroughWithMongod/indexbg_restart_secondary.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/indexbg_restart_secondary.js b/jstests/noPassthroughWithMongod/indexbg_restart_secondary.js
index 0b0bb243139..bb71ef6aa2f 100644
--- a/jstests/noPassthroughWithMongod/indexbg_restart_secondary.js
+++ b/jstests/noPassthroughWithMongod/indexbg_restart_secondary.js
@@ -51,7 +51,7 @@ assert.eq(2, masterDB.jstests_bgsec.getIndexes().length);
// Wait for the secondary to get the index entry
assert.soon( function() {
return 2 == secondDB.jstests_bgsec.getIndexes().length; },
- "index not created on secondary (prior to restart)", 240000 );
+ "index not created on secondary (prior to restart)", 5 * 60 * 1000 );
// restart secondary and reconnect
jsTest.log("Restarting secondary");