mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix typo that allowed _startMongoAsync to be retried forever.
Thanks to @jamesmillerburgess for catching this! https://github.com/meteor/meteor/pull/8728#discussion_r128912266
This commit is contained in:
@@ -138,7 +138,7 @@ class Runner {
|
||||
|
||||
if (tries > 0) {
|
||||
self.mongoRunner.stop();
|
||||
setTimeout(startMongo, 1000);
|
||||
setTimeout(() => startMongo(tries), 1000);
|
||||
} else {
|
||||
self.mongoRunner._fail();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user