summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Studer <greg@10gen.com>2013-05-17 10:14:16 -0400
committerEric Milkie <milkie@10gen.com>2013-05-22 16:44:45 -0400
commita82ff7c74478a65a5908abc0db08c2d254b4f386 (patch)
tree9f266ff2abe5f3ec5a904d1d004503e5ab37d770
parent69f84b299776ec2f8b0ae29b95e82f6baf20fa3b (diff)
downloadmongo-a82ff7c74478a65a5908abc0db08c2d254b4f386.tar.gz
SERVER-9718 authCommands.js wait 5 minutes for migrations on very slow test systems
-rw-r--r--jstests/sharding/authCommands.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/authCommands.js b/jstests/sharding/authCommands.js
index e72d7148695..aeecb2f53d1 100644
--- a/jstests/sharding/authCommands.js
+++ b/jstests/sharding/authCommands.js
@@ -71,7 +71,7 @@ assert.soon( function() {
var x = st.chunkDiff( "foo", "test" );
print( "chunk diff: " + x );
return x < 2 && configDB.locks.findOne({ _id : 'test.foo' }).state == 0;
-}, "no balance happened", 60000 );
+}, "no balance happened", 5 * 60 * 1000 );
assert.soon( function(){
print( "Waiting for migration cleanup to occur..." )