0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

higher timeout for startMongoProgram

This commit is contained in:
dwight 2011-02-04 20:13:34 -05:00
parent 11e614465f
commit f94110baed

View File

@ -135,7 +135,7 @@ startMongoProgram = function(){
} catch( e ) {
}
return false;
}, "unable to connect to mongo program on port " + port, 110000 );
}, "unable to connect to mongo program on port " + port, 300 * 1000 );
return m;
}