From 243e395499d29d877b06cdfd4eb4ea79d27d1ec0 Mon Sep 17 00:00:00 2001 From: Ben Larabie Date: Wed, 11 Oct 2023 13:53:15 -0400 Subject: [PATCH] Removing the redirect to stderr which was put there by mistake --- scripts/run_celery.sh | 4 ++-- scripts/run_celery_no_sms_sending.sh | 4 ++-- scripts/run_celery_send_sms.sh | 4 ++-- scripts/run_celery_sms.sh | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/run_celery.sh b/scripts/run_celery.sh index 361c4e8887..2b3d4a1bc0 100755 --- a/scripts/run_celery.sh +++ b/scripts/run_celery.sh @@ -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 diff --git a/scripts/run_celery_no_sms_sending.sh b/scripts/run_celery_no_sms_sending.sh index 695bbb74f7..f0fe622681 100755 --- a/scripts/run_celery_no_sms_sending.sh +++ b/scripts/run_celery_no_sms_sending.sh @@ -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 diff --git a/scripts/run_celery_send_sms.sh b/scripts/run_celery_send_sms.sh index ce7d888fab..ee0101cdd4 100755 --- a/scripts/run_celery_send_sms.sh +++ b/scripts/run_celery_send_sms.sh @@ -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 diff --git a/scripts/run_celery_sms.sh b/scripts/run_celery_sms.sh index 970796d751..0afca890d2 100755 --- a/scripts/run_celery_sms.sh +++ b/scripts/run_celery_sms.sh @@ -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