Skip to content

Commit

Permalink
increase concurrency on staging sms celery pods
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels committed Sep 20, 2023
1 parent 6faf8b2 commit e3137c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run_celery_send_sms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e

echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}"
echo "Start celery, concurrency: 6"

# TODO: we shouldn't be using the send-sms-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-sms-tasks,send-sms-high,send-sms-medium,send-sms-low
celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=6 -Q send-sms-tasks,send-sms-high,send-sms-medium,send-sms-low

0 comments on commit e3137c4

Please sign in to comment.