From 023d75c1dd4f6bb610ba01b1aa304dca3e341efc Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 2 Jul 2024 14:31:36 +0000 Subject: [PATCH] Add more debugging to localstack bring-up --- bin/localstack-setup_emails.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/localstack-setup_emails.sh b/bin/localstack-setup_emails.sh index 8615b29..20f5ab8 100644 --- a/bin/localstack-setup_emails.sh +++ b/bin/localstack-setup_emails.sh @@ -9,7 +9,8 @@ export AZURE_CONNECTION_STRING="DefaultEndpointsProtocol=http;AccountName=devsto function wait_for() { retries=10 echo ">> running $2" - until eval $2 > /dev/null 2>&1 + set -x + until eval $2 #> /dev/null 2>&1 do if [ "$retries" -lt "0" ]; then echo "$1 is still offline after 10 retries";