Skip to content

Commit

Permalink
Remove gunicorn max-requests (#3866)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkfran authored Jan 21, 2022
1 parent 43df95c commit 9af4370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

RUN_COMMAND="talisker.gunicorn.gevent webapp.app:create_app() --bind $1 --worker-class gevent --max-requests 1000 --name talisker-`hostname`"
RUN_COMMAND="talisker.gunicorn.gevent webapp.app:create_app() --bind $1 --worker-class gevent --name talisker-`hostname`"

if [ "${FLASK_DEBUG}" = true ] || [ "${FLASK_DEBUG}" = 1 ]; then
RUN_COMMAND="${RUN_COMMAND} --reload --log-level debug --timeout 9999"
Expand Down

0 comments on commit 9af4370

Please sign in to comment.