From 942c00bd3e01dcd075a17c47b62bd86c8dbdf01e Mon Sep 17 00:00:00 2001 From: Sai Shanmukha Date: Wed, 5 Mar 2025 12:34:02 -0600 Subject: [PATCH] Changing wokers to 1 --- deployment/wsgi/gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/wsgi/gunicorn.conf.py b/deployment/wsgi/gunicorn.conf.py index e75aaaf4..e4431dba 100644 --- a/deployment/wsgi/gunicorn.conf.py +++ b/deployment/wsgi/gunicorn.conf.py @@ -2,7 +2,7 @@ wsgi_app = "bin.settings:application" bind = "0.0.0.0:8000" -workers = multiprocessing.cpu_count() * 2 + 1 +workers = 1 worker_class = "gevent" worker_connections = 100 preload_app = False