Add --events to workers

This commit is contained in:
Joshua Boniface 2023-11-16 12:35:54 -05:00
parent d226e9f4e5
commit 3651885954
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ CELERY_BIN="$( which celery )"
# app arguments work in a non-backwards-compatible way with Celery 5. # app arguments work in a non-backwards-compatible way with Celery 5.
case "$( cat /etc/debian_version )" in case "$( cat /etc/debian_version )" in
10.*) 10.*)
CELERY_ARGS="worker --app pvcapid.flaskapi.celery --concurrency 3 --hostname pvcworkerd@$(hostname -s) --queues $(hostname -s) --loglevel INFO" CELERY_ARGS="worker --app pvcapid.flaskapi.celery --events --concurrency 3 --hostname pvcworkerd@$(hostname -s) --queues $(hostname -s) --loglevel INFO"
;; ;;
*) *)
CELERY_ARGS="--app pvcapid.flaskapi.celery worker --concurrency 3 --hostname pvcworkerd@$(hostname -s) --queues $(hostname -s) --loglevel INFO" CELERY_ARGS="--app pvcapid.flaskapi.celery worker --events --concurrency 3 --hostname pvcworkerd@$(hostname -s) --queues $(hostname -s) --loglevel INFO"
;; ;;
esac esac