Skip to content

Commit

Permalink
Bump MS SQL timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Hornwitser committed Oct 30, 2024
1 parent 9189938 commit 0202009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/wait-until-healthy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$?
Expand All @@ -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

0 comments on commit 0202009

Please sign in to comment.