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