feat: add plugin queue to celery cmd in entrypoint.sh

This commit is contained in:
Junyan Qin 2025-07-01 17:54:51 +08:00
parent bcfbeee333
commit 2c795ec301
No known key found for this signature in database
GPG Key ID: 22FE3AFADC710CEB
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ if [[ "${MODE}" == "worker" ]]; then
exec celery -A app.celery worker -P ${CELERY_WORKER_CLASS:-gevent} $CONCURRENCY_OPTION \
--max-tasks-per-child ${MAX_TASK_PRE_CHILD:-50} --loglevel ${LOG_LEVEL:-INFO} \
-Q ${CELERY_QUEUES:-dataset,mail,ops_trace,app_deletion}
-Q ${CELERY_QUEUES:-dataset,mail,ops_trace,app_deletion,plugin}
elif [[ "${MODE}" == "beat" ]]; then
exec celery -A app.celery beat --loglevel ${LOG_LEVEL:-INFO}