From e72c459e16b04e57843aa9755cc73eb2fbe5c398 Mon Sep 17 00:00:00 2001 From: BryantHe Date: Tue, 24 Oct 2023 18:30:52 +0800 Subject: [PATCH] fix: adjust gunicorn.conf.py --- gunicorn.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 2b55078..f650880 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -11,7 +11,7 @@ daemon = False debug = False worker_connections = 3000 workers = multiprocessing.cpu_count() * 2 + 1 -timeout = 70 +timeout = 120 # 指定每个工作者的线程数 # threads = 10