From 02020098e9f4c6ccec5d8d834cf6c0d7370877eb Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 30 Oct 2024 22:12:17 +0100 Subject: [PATCH] Bump MS SQL timeout --- dev/wait-until-healthy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/wait-until-healthy.sh b/dev/wait-until-healthy.sh index 80815069b..4592bf948 100755 --- a/dev/wait-until-healthy.sh +++ b/dev/wait-until-healthy.sh @@ -5,7 +5,7 @@ if [ "$#" -ne 1 ]; then exit 1 fi -for _ in {1..50} +for _ in {1..75} do state=$(docker inspect -f '{{ .State.Health.Status }}' $1 2>&1) return_code=$? @@ -16,5 +16,5 @@ do sleep 0.4 done ->&2 echo "Timeout of 20s exceeded when waiting for container to be healthy: $1" +>&2 echo "Timeout of 30s exceeded when waiting for container to be healthy: $1" exit 1