Skip to content

Commit

Permalink
🔥 Remove unused celery command line args
Browse files Browse the repository at this point in the history
Done as part of maykinmedia/charts#165
  • Loading branch information
SilviaAmAm committed Jan 22, 2025
1 parent 2528adf commit a162d64
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 a162d64

Please sign in to comment.