From 7fac1c41a83e6d727d2441a4619daba0e1e7e9fc Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 11 Jul 2025 08:13:19 -0700 Subject: [PATCH] add eventlet debugging --- gunicorn_config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gunicorn_config.py b/gunicorn_config.py index e71cbe944..d8ae6fb88 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -6,6 +6,9 @@ import traceback import eventlet import gunicorn +eventlet.monkey_patch() +# This will give us a better stack trace if blocking occurs +eventlet.debug.hub_blocking_detection(True) workers = 4 worker_class = "eventlet" worker_connections = 256