From c651a06d4708227c49571a4ce6d758a7bdacf31e Mon Sep 17 00:00:00 2001 From: Blake Lucchesi Date: Wed, 9 Aug 2017 10:04:05 -0700 Subject: [PATCH] mysql attempts to reconnect in 6 not 60 seconds. --- lib/mysql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mysql.js b/lib/mysql.js index db8953d..edfbfd5 100644 --- a/lib/mysql.js +++ b/lib/mysql.js @@ -36,7 +36,7 @@ function initializeConnection(connection, schema, callback) { if (err) { console.log('connection.connect err', err); console.log('will reconnect in 60 secs'); - setTimeout(schema.adapter.connect.bind(schema.adapter, callback), 6000); + setTimeout(schema.adapter.connect.bind(schema.adapter, callback), 60000); return; } callback();