diff options
author | matt dannenberg <matt.dannenberg@10gen.com> | 2015-07-06 08:49:20 -0400 |
---|---|---|
committer | matt dannenberg <matt.dannenberg@10gen.com> | 2015-07-07 08:52:22 -0400 |
commit | a81827ad36beeca1badf99ad7a43a05d53b44593 (patch) | |
tree | 15f467f1d6392d11657c2c35274b2f44b1f1dc59 /jstests | |
parent | 33a99b4662a17363074b8e2a5289acedadfbcc41 (diff) | |
download | mongo-a81827ad36beeca1badf99ad7a43a05d53b44593.tar.gz |
SERVER-19310 extend the timeout on awaitReplication in indexbg_interrupts.js
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/noPassthroughWithMongod/indexbg_interrupts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/indexbg_interrupts.js b/jstests/noPassthroughWithMongod/indexbg_interrupts.js index 5b6b156f353..7289de6f25b 100644 --- a/jstests/noPassthroughWithMongod/indexbg_interrupts.js +++ b/jstests/noPassthroughWithMongod/indexbg_interrupts.js @@ -87,7 +87,7 @@ for (var idx = 0; idx < dropAction.length; idx++) { assert.commandWorked(masterDB.runCommand( dc )); jsTest.log("Waiting on replication"); - replTest.awaitReplication(); + replTest.awaitReplication(60*1000); // we need to assert.soon because the drop only marks the index for removal // the removal itself is asynchronous and may take another moment before it happens |