Skip to content

Commit

Permalink
add celery receipts script (#2418)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored Jan 20, 2025
1 parent 259f7d2 commit fed01ff
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/run_celery_receipts.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 fed01ff

Please sign in to comment.