summaryrefslogtreecommitdiff
path: root/jstests/sharding/authCommands.js
diff options
context:
space:
mode:
authorGreg Studer <greg@10gen.com>2013-05-17 10:14:16 -0400
committerGreg Studer <greg@10gen.com>2013-05-17 10:14:16 -0400
commitd5bb16f175a21e45b6a97a3840372df30750396b (patch)
treebb0c70b8578fd8c29f3ffb832d141a74fcb0742a /jstests/sharding/authCommands.js
parent3595a3902afc0ca14db1f92ad3f78a23c0d63092 (diff)
downloadmongo-d5bb16f175a21e45b6a97a3840372df30750396b.tar.gz
SERVER-9718 authCommands.js wait 5 minutes for migrations on very slow test systems
Diffstat (limited to 'jstests/sharding/authCommands.js')
-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..." )