From 9cca19d765ccbfa08aeffc02c5dc1e99640a22ba Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 11 Jul 2025 12:06:24 -0700 Subject: [PATCH] whoops --- gunicorn_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index d8ae6fb88..275314b53 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -4,11 +4,12 @@ import sys import traceback import eventlet +import eventlet.debug as debug import gunicorn eventlet.monkey_patch() # This will give us a better stack trace if blocking occurs -eventlet.debug.hub_blocking_detection(True) +debug.hub_blocking_detection(True) workers = 4 worker_class = "eventlet" worker_connections = 256