Explorar el Código

fix: remove unused queue `generation` (#10532)

Co-authored-by: 刘江波 <jiangbo721@163.com>
jiangbo721 hace 5 meses
padre
commit
931e76e3d1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      api/docker/entrypoint.sh

+ 1 - 1
api/docker/entrypoint.sh

@@ -21,7 +21,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}