summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@10gen.com>2016-02-03 14:43:16 -0500
committerDianna Hohensee <dianna.hohensee@10gen.com>2016-02-08 12:46:59 -0500
commita1a4f91a9c70b3f9f58f2922c260f1df97418e2c (patch)
tree91c5b67da3a7cedbb09c759c17731b7eb14555ab
parente39a25c60e551302323bfe7f3eafd6987d0014e7 (diff)
downloadmongo-a1a4f91a9c70b3f9f58f2922c260f1df97418e2c.tar.gz
SERVER-22455 Fix sharding_rs1.js timeout error due to continuous config primary stepdown slowing down the balancer
-rw-r--r--jstests/sharding/sharding_rs1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/sharding_rs1.js b/jstests/sharding/sharding_rs1.js
index 353f9c532cc..dfcb8f22ea4 100644
--- a/jstests/sharding/sharding_rs1.js
+++ b/jstests/sharding/sharding_rs1.js
@@ -27,7 +27,7 @@ assert.writeOK(bulk.execute({w: 3}));
assert.commandWorked(s.s.adminCommand({ shardcollection: "test.foo" , key: { _id: 1 } }));
jsTest.log("Waiting for balance to complete");
-s.awaitBalance('foo', 'test', 2 * 60 * 1000);
+s.awaitBalance('foo', 'test', 3 * 60 * 1000);
jsTest.log("Stopping balancer");
s.stopBalancer();