Skip to content

Commit

Permalink
fix: double quote to prevent splitting and globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinRodo authored Nov 15, 2023
1 parent 4650cb1 commit 0cf3df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_celery_send_email.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0cf3df8

Please sign in to comment.