diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-04-27 23:49:25 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-04-27 23:49:25 -0400 |
commit | 18abbfe85c6fa1a0eea95b44d5cfc1eb0d486cf6 (patch) | |
tree | 3f40c657e83521ee1e02cd472e9745b7b879f11c /jstests/sharding/migrateBig.js | |
parent | 2b922d909798a4b3eb48bca5dd4771bc428cfee5 (diff) | |
download | mongo-18abbfe85c6fa1a0eea95b44d5cfc1eb0d486cf6.tar.gz |
longer allowable time
Diffstat (limited to 'jstests/sharding/migrateBig.js')
-rw-r--r-- | jstests/sharding/migrateBig.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/migrateBig.js b/jstests/sharding/migrateBig.js index f6ba18a7c02..917f152a4d2 100644 --- a/jstests/sharding/migrateBig.js +++ b/jstests/sharding/migrateBig.js @@ -40,6 +40,6 @@ for ( i=0; i<20; i+= 2 ) db.printShardingStatus() -assert.soon( function(){ var x = s.chunkDiff( "foo" , "test" ); print( "chunk diff: " + x ); return x < 2; } , "no balance happened" , 120 * 1000 , 2000 ) +assert.soon( function(){ var x = s.chunkDiff( "foo" , "test" ); print( "chunk diff: " + x ); return x < 2; } , "no balance happened" , 8 * 60 * 1000 , 2000 ) s.stop() |