From 73b2b7972c21d801a1b0d5eb40e24127635db773 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sat, 1 Aug 2026 21:58:27 -0400 Subject: [PATCH] up workers to 16 --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index fe8f8bc..80e09f9 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -3,7 +3,7 @@ from typing import Any import app bind = "0.0.0.0:5000" -workers = 2 +workers = 16 timeout = 300