summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2009-04-03 15:36:18 -0400
committerAaron <aaron@10gen.com>2009-04-03 15:36:18 -0400
commit6a8c1177555606f66861a9847d53abd0713385c7 (patch)
tree2ebb71581762b3c7304aec9a11a8622c5b20adca
parent80c3078d1a15c5e9aeddcff198defada836a3fc6 (diff)
downloadmongo-6a8c1177555606f66861a9847d53abd0713385c7.tar.gz
soon is now 30 secs
-rw-r--r--shell/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/utils.js b/shell/utils.js
index 8528a591407..5785fb4a987 100644
--- a/shell/utils.js
+++ b/shell/utils.js
@@ -29,7 +29,7 @@ assert.soon = function( f ) {
while( 1 ) {
if ( f() )
return;
- if ( ( new Date() ).getTime() - start.getTime() > 20000 )
+ if ( ( new Date() ).getTime() - start.getTime() > 30000 )
throw "assert.soon failed: " + f;
sleep( 200 );
}