Skip to content

Commit

Permalink
add a new run_celery script for delivery receipts (#2376)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored Dec 4, 2024
1 parent febc29a commit 83f2242
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 83f2242

Please sign in to comment.