Skip to content

Commit

Permalink
Increase gunicorn timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Mar 20, 2020
1 parent e03e890 commit 9da7f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/web/run_web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ echo "==> Send via Slack info about service version and network"
python manage.py send_slack_notification

echo "==> Running Gunicorn ... "
exec gunicorn --pythonpath "$PWD" config.wsgi:application --log-file=- --error-logfile=- --access-logfile=- --log-level info --logger-class='safe_relay_service.relay.utils.CustomGunicornLogger' -b unix:$DOCKER_SHARED_DIR/gunicorn.socket -b 0.0.0.0:8888 --worker-class gevent
exec gunicorn --pythonpath "$PWD" config.wsgi:application --timeout 120 --graceful-timeout 120 --log-file=- --error-logfile=- --access-logfile=- --log-level info --logger-class='safe_relay_service.relay.utils.CustomGunicornLogger' -b unix:$DOCKER_SHARED_DIR/gunicorn.socket -b 0.0.0.0:8888 --worker-class gevent

0 comments on commit 9da7f90

Please sign in to comment.