From 5718f50c4f16982232128ea6da83067e48b6bc5a Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Thu, 4 Feb 2021 15:46:51 +0100 Subject: [PATCH] increase worker timeout for Raspberry Pi --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index a67b20d0c..f80be548d 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 = 20 +timeout = 60 def pre_fork(server, worker): pass