Skip to content

Commit

Permalink
Merge pull request #225 from open-zaak/feature/simplify-celery-scripts
Browse files Browse the repository at this point in the history
🔥 Remove unused celery command line args
  • Loading branch information
SilviaAmAm authored Jan 22, 2025
2 parents 2528adf + a162d64 commit 66aea4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/celery_worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -euo pipefail

LOGLEVEL=${CELERY_LOGLEVEL:-INFO}

QUEUE=${1:-${CELERY_WORKER_QUEUE:=celery}}
WORKER_NAME=${2:-${CELERY_WORKER_NAME:="${QUEUE}"@%n}}
QUEUE=${CELERY_WORKER_QUEUE:=celery}
WORKER_NAME=${CELERY_WORKER_NAME:="${QUEUE}"@%n}

# Figure out abspath of this script
SCRIPT=$(readlink -f "$0")
Expand Down

0 comments on commit 66aea4f

Please sign in to comment.