From fd8c40fee7f8ad9a8fb717661b93ea763bdcad19 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sat, 6 Feb 2021 18:51:53 +0100 Subject: [PATCH] increase worker timeout --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index f80be548d..6fcbe6b0e 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,7 +1,7 @@ bind = '0.0.0.0:8000' workers = 2 worker_class = 'uvicorn.workers.UvicornWorker' -timeout = 60 +timeout = 120 def pre_fork(server, worker): pass