From 6a8c1177555606f66861a9847d53abd0713385c7 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 3 Apr 2009 15:36:18 -0400 Subject: soon is now 30 secs --- shell/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- cgit v1.2.1