File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ echo "initializing and migrating db"
1414python3 ./init_db.py
1515
1616echo " starting gunicorn"
17- exec gunicorn ${GUNICORN_FLAGS} --access-logfile - --log-level debug --error-logfile - --worker-class sync --workers=${GUNICORN_WORKERS} -b :80 api:app
17+ exec gunicorn ${GUNICORN_FLAGS} --access-logfile - --log-level info --error-logfile - --worker-class sync --workers=${GUNICORN_WORKERS} -b :80 api:app
Original file line number Diff line number Diff line change 5959# The gthread worker class should help with this, but it doesn't always seem to work for some reason.
6060# However running the servers behind nginx (and using the sync class) resolves all problems
6161# as nginx handles all the persistent connections.
62- # --log-level=DEBUG
6362echo " starting gunicorn"
64- exec gunicorn $GUNICORN_FLAGS --access-logfile - --log-level debug --error-logfile - --worker-class sync --chdir src --workers=$GUNICORN_WORKERS -b :$GUNICORN_PORT public:app
63+ exec gunicorn $GUNICORN_FLAGS --access-logfile - --log-level info --error-logfile - --worker-class sync --chdir src --workers=$GUNICORN_WORKERS -b :$GUNICORN_PORT public:app
You can’t perform that action at this time.
0 commit comments