From 0412d23f32a64271034d8e6d53fa71192b8456c5 Mon Sep 17 00:00:00 2001 From: Danny Coates Date: Sun, 23 Feb 2014 18:35:35 -0800 Subject: [PATCH] default mysql connection limits to 10 --- config/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.js b/config/config.js index b03d95eb..787fb256 100644 --- a/config/config.js +++ b/config/config.js @@ -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' },