Skip to content

Commit

Permalink
Removing the redirect to stderr which was put there by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ben851 committed Oct 11, 2023
1 parent ea7c4c2 commit 243e395
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions scripts/run_celery.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ if [[ -z "${STATSD_HOST}" ]]; then
while :
do
if nc -vz $STATSD_HOST 25888; then
echo "CWAgent is Ready." > /dev/stderr
echo "CWAgent is Ready."
break;
else
echo "Waiting for CWAgent to become ready." > /dev/stderr
echo "Waiting for CWAgent to become ready."
sleep 1
fi
done
Expand Down
4 changes: 2 additions & 2 deletions scripts/run_celery_no_sms_sending.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ if [[ -z "${STATSD_HOST}" ]]; then
while :
do
if nc -vz $STATSD_HOST 25888; then
echo "CWAgent is Ready." > /dev/stderr
echo "CWAgent is Ready."
break;
else
echo "Waiting for CWAgent to become ready." > /dev/stderr
echo "Waiting for CWAgent to become ready."
sleep 1
fi
done
Expand Down
4 changes: 2 additions & 2 deletions scripts/run_celery_send_sms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if [[ -z "${STATSD_HOST}" ]]; then
while :
do
if nc -vz $STATSD_HOST 25888; then
echo "CWAgent is Ready." > /dev/stderr
echo "CWAgent is Ready."
break;
else
echo "Waiting for CWAgent to become ready." > /dev/stderr
echo "Waiting for CWAgent to become ready."
sleep 1
fi
done
Expand Down
4 changes: 2 additions & 2 deletions scripts/run_celery_sms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ if [[ -z "${STATSD_HOST}" ]]; then
while :
do
if nc -vz $STATSD_HOST 25888; then
echo "CWAgent is Ready." > /dev/stderr
echo "CWAgent is Ready."
break;
else
echo "Waiting for CWAgent to become ready." > /dev/stderr
echo "Waiting for CWAgent to become ready."
sleep 1
fi
done
Expand Down

0 comments on commit 243e395

Please sign in to comment.