From c6d668bacf98edd2810ae252e1abe30e31f01757 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Thu, 18 Apr 2024 11:32:51 +0530 Subject: [PATCH] Bump gunicorn workers per server up to 2 --- gunicorn-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn-config.py b/gunicorn-config.py index ea382346..7d98dc7c 100644 --- a/gunicorn-config.py +++ b/gunicorn-config.py @@ -1,7 +1,7 @@ import multiprocessing bind = "0.0.0.0:42110" -workers = 1 +workers = 2 worker_class = "uvicorn.workers.UvicornWorker" timeout = 120 keep_alive = 60