diff --git a/start.sh b/start.sh index 4ddeab2..c23b4c7 100644 --- a/start.sh +++ b/start.sh @@ -2,7 +2,7 @@ set -eu if [ ${MODE:-""} == "development" ]; then if [ -f /app/requirements.txt ]; then pip install -r /app/requirements.txt; fi - exec gunicorn -k --reload egg:meinheld#gunicorn_worker -c "$GUNICORN_CONF" "$APP_MODULE" + exec gunicorn -k --reload gthread -c "$GUNICORN_CONF" "$APP_MODULE" else - exec gunicorn -k egg:meinheld#gunicorn_worker -c "$GUNICORN_CONF" "$APP_MODULE" + exec gunicorn -k gthread -c "$GUNICORN_CONF" "$APP_MODULE" fi