summaryrefslogtreecommitdiff
path: root/jstests/replsets/index_restart_secondary.js
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2014-01-15 15:44:20 -0500
committerEric Milkie <milkie@10gen.com>2014-01-15 15:46:27 -0500
commit26a8aaf0e660c247c2667e0f182bc4964096735b (patch)
tree83be9844307d29bdfb4749a00fe32dd2a64212b0 /jstests/replsets/index_restart_secondary.js
parentc75e1809030e09513560181b2d161d0e517ad836 (diff)
downloadmongo-26a8aaf0e660c247c2667e0f182bc4964096735b.tar.gz
SERVER-11767 allow more time for records to replicate, on slower builders
Diffstat (limited to 'jstests/replsets/index_restart_secondary.js')
-rw-r--r--jstests/replsets/index_restart_secondary.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/replsets/index_restart_secondary.js b/jstests/replsets/index_restart_secondary.js
index 9026fb789de..5e1dd58ef3d 100644
--- a/jstests/replsets/index_restart_secondary.js
+++ b/jstests/replsets/index_restart_secondary.js
@@ -37,7 +37,7 @@ assert.eq(2, masterDB.system.indexes.count( {ns:"fgIndexSec.jstests_fgsec"} ) );
// Wait for the secondary to get the index entry
assert.soon( function() {
return 2 == secondDB.system.indexes.count( {ns:"fgIndexSec.jstests_fgsec"} ); },
- "index not created on secondary (prior to restart)", 30000, 50 );
+ "index not created on secondary (prior to restart)", 120000, 50 );
jsTest.log("Index created and system.indexes entry exists on secondary");