From 5dfb6bc22fc829300317832821e1ca49df135c3a Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 12 Feb 2019 00:44:39 +0100 Subject: [PATCH] Gulp fixes --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index ad69c3358..d69dd5d0d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -410,7 +410,7 @@ function dockerWait() { let interval = 100; let elapsedTime = 0; - let maxInterval = 5 * 60 * 1000; + let maxInterval = 4 * 60 * 1000; let myConf = { user: dbConf.username, @@ -446,7 +446,7 @@ function dockerWait() { } if (elapsedTime >= maxInterval) - reject(new Error(`MySQL not initialized whithin ${elapsedTime} secs`)); + reject(new Error(`MySQL not initialized whithin ${elapsedTime / 1000} secs`)); else setTimeout(checker, interval); });