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