default mysql connection limits to 10

This commit is contained in:
Danny Coates 2014-02-23 18:35:35 -08:00
Родитель fda701ee3e
Коммит 0412d23f32
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -68,7 +68,7 @@ module.exports = function (fs, path, url, convict) {
},
connectionLimit: {
doc: "The maximum number of connections to create at once.",
default: 100,
default: 10,
format: 'nat',
env: 'MYSQL_CONNECTION_LIMIT'
},
@ -108,7 +108,7 @@ module.exports = function (fs, path, url, convict) {
},
connectionLimit: {
doc: "The maximum number of connections to create at once.",
default: 100,
default: 10,
format: 'nat',
env: 'SLAVE_CONNECTION_LIMIT'
},