Gulp fixes

This commit is contained in:
Juan Ferrer 2019-02-12 00:44:39 +01:00
parent 4d0495fce7
commit 5dfb6bc22f
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});