From 0cf3df8f879d7be3bbb61696ad4bda5c742ef644 Mon Sep 17 00:00:00 2001 From: Calvin Rodo Date: Wed, 15 Nov 2023 03:00:18 +0000 Subject: [PATCH] fix: double quote to prevent splitting and globbing --- scripts/run_celery_send_email.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_celery_send_email.sh b/scripts/run_celery_send_email.sh index 3209225413..98e2eed691 100755 --- a/scripts/run_celery_send_email.sh +++ b/scripts/run_celery_send_email.sh @@ -28,4 +28,4 @@ fi echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}" # TODO: we shouldn't be using the send-email-tasks queue anymore, once we verify this we can remove it -celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=${CELERY_CONCURRENCY-4} -Q send-email-tasks,send-email-high,send-email-medium,send-email-low +celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency="${CELERY_CONCURRENCY-4}" -Q send-email-tasks,send-email-high,send-email-medium,send-email-low