We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4c28be commit 5981fc6Copy full SHA for 5981fc6
start.sh
@@ -2,7 +2,7 @@
2
set -eu
3
if [ ${MODE:-""} == "development" ]; then
4
if [ -f /app/requirements.txt ]; then pip install -r /app/requirements.txt; fi
5
- exec gunicorn -k --reload egg:meinheld#gunicorn_worker -c "$GUNICORN_CONF" "$APP_MODULE"
+ exec gunicorn -k gthread --reload -c "$GUNICORN_CONF" "$APP_MODULE"
6
else
7
- exec gunicorn -k egg:meinheld#gunicorn_worker -c "$GUNICORN_CONF" "$APP_MODULE"
+ exec gunicorn -k gthread -c "$GUNICORN_CONF" "$APP_MODULE"
8
fi
0 commit comments