Skip to content

Commit

Permalink
Merge branch 'main' into limit-emails
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbahrai authored Dec 4, 2024
2 parents 065e1ea + 83f2242 commit 2ba2717
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/run_celery_delivery.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

set -e

# Runs celery with only the delivery-receipts queue.

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

celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency="${CELERY_CONCURRENCY-4}" -Q delivery-receipts

0 comments on commit 2ba2717

Please sign in to comment.