Skip to content

Commit

Permalink
fix: add timeout to entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jakuboskera committed Jun 2, 2022
1 parent 885e411 commit 9ce30bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e

flask db upgrade
gunicorn --bind 0.0.0.0:$PORT -w 2 --threads 2 main:app
gunicorn --bind 0.0.0.0:$PORT -w 2 -t 2 --worker-class gthread --timeout 600 main:app

0 comments on commit 9ce30bc

Please sign in to comment.