Skip to content
Snippets Groups Projects
Unverified Commit eac22605 authored by Bhaskar Gautam's avatar Bhaskar Gautam Committed by GitHub
Browse files

Removing infinite loop on ... (#87)

In most recent localstack container image health url is migrated to this resource.
parent 52945efb
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ setup_localstack:
docker compose start localstack
echo "Waiting for localstack to start..."
# Ping http://localhost:4566/health until we get a 200 response
until $$(curl --output /dev/null --silent --head --fail http://localhost:4566/health); do \
until $$(curl --output /dev/null --silent --head --fail http://localhost:4566/_localstack/health); do \
printf '.'; \
sleep 0.5; \
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment