Skip to content

Commit

Permalink
Add more debugging to localstack bring-up
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Jul 2, 2024
1 parent 8aa4889 commit 023d75c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/localstack-setup_emails.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 023d75c

Please sign in to comment.