From 45c5a2598dfc8360ce9210a28601a772dfcbc02f Mon Sep 17 00:00:00 2001 From: sabaimran Date: Tue, 20 Feb 2024 13:56:51 -0800 Subject: [PATCH] Temp - change gunicorn config to use a single worker --- gunicorn-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn-config.py b/gunicorn-config.py index 1760ae38..ad839af3 100644 --- a/gunicorn-config.py +++ b/gunicorn-config.py @@ -1,7 +1,7 @@ import multiprocessing bind = "0.0.0.0:42110" -workers = 4 +workers = 1 worker_class = "uvicorn.workers.UvicornWorker" timeout = 120 keep_alive = 60