mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Increase mongo connection timeout to reduce self-test mongo errors.
Certain self-test's like "modules - test app" are encountering mongo connection timeout errors on some runs. Increasing the connection timeout helps address these errors.
This commit is contained in:
@@ -593,7 +593,7 @@ var launchMongo = function (options) {
|
||||
'meteor',
|
||||
new mongoNpmModule.Server('127.0.0.1', options.port, {
|
||||
poolSize: 1,
|
||||
socketOptions: {connectTimeoutMS: 30000},
|
||||
socketOptions: {connectTimeoutMS: 60000},
|
||||
}),
|
||||
{safe: true});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user