Przeglądaj źródła

Set default LOG_LEVEL to INFO for celery workers and beat (#13066)

Co-authored-by: Abdullah AlOsaimi <189027247+osaimi@users.noreply.github.com>
Abdullah AlOsaimi 2 miesięcy temu
rodzic
commit
5d91dbd000
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      api/docker/entrypoint.sh

+ 2 - 2
api/docker/entrypoint.sh

@@ -20,11 +20,11 @@ if [[ "${MODE}" == "worker" ]]; then
     CONCURRENCY_OPTION="-c ${CELERY_WORKER_AMOUNT:-1}"
   fi
 
-  exec celery -A app.celery worker -P ${CELERY_WORKER_CLASS:-gevent} $CONCURRENCY_OPTION --loglevel ${LOG_LEVEL} \
+  exec celery -A app.celery worker -P ${CELERY_WORKER_CLASS:-gevent} $CONCURRENCY_OPTION --loglevel ${LOG_LEVEL:-INFO} \
     -Q ${CELERY_QUEUES:-dataset,mail,ops_trace,app_deletion}
 
 elif [[ "${MODE}" == "beat" ]]; then
-  exec celery -A app.celery beat --loglevel ${LOG_LEVEL}
+  exec celery -A app.celery beat --loglevel ${LOG_LEVEL:-INFO}
 else
   if [[ "${DEBUG}" == "true" ]]; then
     exec flask run --host=${DIFY_BIND_ADDRESS:-0.0.0.0} --port=${DIFY_PORT:-5001} --debug