Skip to content

Commit e24b9f7

Browse files
authored
#558 Fix Gunicorn starting the prod mode error (#559)
1 parent 43f8c54 commit e24b9f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell_scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ echo "backend:Django migrations completed."
4545

4646
if [ "${DEBUGPY_ENABLE:-"false"}" == "false" ]; then
4747
echo "backend: Starting Gunicorn with uvicorn worker for production"
48-
CMD="gunicorn backend.asgi:application --bind 0.0.0.0:${GUNICORN_PORT} --workers=\"${GUNICORN_WORKERS}\" -k uvicorn_worker.UvicornWorker --timeout=\"${GUNICORN_TIMEOUT}\" "
48+
CMD="gunicorn backend.asgi:application --bind 0.0.0.0:${GUNICORN_PORT} --workers=${GUNICORN_WORKERS} -k uvicorn_worker.UvicornWorker --timeout=${GUNICORN_TIMEOUT}"
4949
else
5050
echo "backend: Starting uvicorn for Development"
5151
CMD="uvicorn backend.asgi:application --host=0.0.0.0 --port=${GUNICORN_PORT} --reload"

0 commit comments

Comments
 (0)