Skip to content

Commit

Permalink
chore: Remove unused queue
Browse files Browse the repository at this point in the history
  • Loading branch information
sotazum committed Nov 21, 2024
1 parent c9e8390 commit bdc0c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/api/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [[ "${MODE}" == "worker" ]]; then
fi

exec celery -A app.celery worker -P ${CELERY_WORKER_CLASS:-gevent} $CONCURRENCY_OPTION --loglevel ${LOG_LEVEL} \
-Q ${CELERY_QUEUES:-dataset,generation,mail,ops_trace,app_deletion}
-Q ${CELERY_QUEUES:-dataset,mail,ops_trace,app_deletion}

elif [[ "${MODE}" == "beat" ]]; then
exec celery -A app.celery beat --loglevel ${LOG_LEVEL}
Expand All @@ -42,4 +42,4 @@ else
--preload \
app:app
fi
fi
fi

0 comments on commit bdc0c02

Please sign in to comment.