summaryrefslogtreecommitdiff
path: root/jstests/repl
diff options
context:
space:
mode:
authormatt dannenberg <matt.dannenberg@10gen.com>2014-07-31 11:40:56 -0400
committermatt dannenberg <matt.dannenberg@10gen.com>2014-07-31 12:52:42 -0400
commit9ec7d68a97dc54f534e95959e62cafcab38bd440 (patch)
tree7d9a36215dd8d9d45aa294c9b3e3805847141084 /jstests/repl
parent7e6b8c83f87bfb8306b3ab3fe15dd3fa451fc1e9 (diff)
downloadmongo-9ec7d68a97dc54f534e95959e62cafcab38bd440.tar.gz
SERVER-14755 increase ReplSetTest timeouts to prevent spurious failures while using HybridCoordinator
Diffstat (limited to 'jstests/repl')
-rw-r--r--jstests/repl/repl6.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/repl/repl6.js b/jstests/repl/repl6.js
index f4fdc9be753..16b80ce3188 100644
--- a/jstests/repl/repl6.js
+++ b/jstests/repl/repl6.js
@@ -5,7 +5,7 @@ var baseName = "jstests_repl6test";
soonCount = function( m, count ) {
assert.soon( function() {
return m.getDB( baseName ).a.find().count() == count;
- }, "expected count: " + count + " from : " + m );
+ }, "expected count: " + count + " from : " + m, 60 * 1000);
}
doTest = function( signal ) {