diff --git a/ee/api/entrypoint.sh b/ee/api/entrypoint.sh index f4372a982..f1926341b 100755 --- a/ee/api/entrypoint.sh +++ b/ee/api/entrypoint.sh @@ -4,4 +4,5 @@ source /tmp/.env.override #uvicorn app:app --host 0.0.0.0 --port $LISTEN_PORT --proxy-headers NB_WORKERS="${NB_WORKERS:=4}" -gunicorn app:app --workers $NB_WORKERS --bind 0.0.0.0:$LISTEN_PORT --log-level ${S_LOGLEVEL:-warning} +gunicorn app:app --workers $NB_WORKERS --worker-class uvicorn.workers.UvicornWorker \ + --bind 0.0.0.0:$LISTEN_PORT --log-level ${S_LOGLEVEL:-warning} \ No newline at end of file