From 801e3768bfd04d10994419a621f0caaddd2d0e85 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Tue, 13 Jun 2017 19:47:56 +0530 Subject: Increase the mariadb deploy timeout In some environment, mariadb is taking more than 120 seconds to completely deploy and is causing the timeout error. so now timeout is increased to 600 with increment of 5 seconds check. Change-Id: I08fd2f8f3c35d81b876b82aa45e052b474a8fed9 Signed-off-by: Kanagaraj Manickam k00365106 --- deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy.sh b/deploy.sh index d2b09fa..c4cf358 100755 --- a/deploy.sh +++ b/deploy.sh @@ -110,7 +110,7 @@ function pull_docker_images() { function wait_for_mariadb() { CONTAINER_NAME=$1 - TIMEOUT=120 + TIMEOUT=600 # wait for the real startup AMOUNT_STARTUP=$($DOCKER_CMD logs ${CONTAINER_NAME} 2>&1 | grep 'mysqld: ready for connections.' | wc -l) @@ -123,8 +123,8 @@ function wait_for_mariadb() { echo "ERROR: Mariadb deployment failed." exit 1 fi - let TIMEOUT-=1 - sleep 1 + let TIMEOUT-=5 + sleep 5 done } -- cgit 1.2.3-korg