diff options
author | Aaron <aaron@10gen.com> | 2009-04-03 15:36:18 -0400 |
---|---|---|
committer | Aaron <aaron@10gen.com> | 2009-04-03 15:36:18 -0400 |
commit | 6a8c1177555606f66861a9847d53abd0713385c7 (patch) | |
tree | 2ebb71581762b3c7304aec9a11a8622c5b20adca /shell | |
parent | 80c3078d1a15c5e9aeddcff198defada836a3fc6 (diff) | |
download | mongo-6a8c1177555606f66861a9847d53abd0713385c7.tar.gz |
soon is now 30 secs
Diffstat (limited to 'shell')
-rw-r--r-- | shell/utils.js | 2 |
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 ); } |