Skip to content

Commit

Permalink
add celery receipts script
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels committed Jan 16, 2025
1 parent 259f7d2 commit 29beb9c
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 29beb9c

Please sign in to comment.