From c24711b795482e6b6b03853d90f35454816ff856 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 28 May 2026 16:36:49 +0530 Subject: [PATCH] fix: Increase default slow request threshold --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index 7681b043..6d8809e1 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -778,7 +778,7 @@ class SlowRequestThreshold(Setting): meta = "FLOAT" validator = validate_pos_float type = float - default = 1.0 + default = 5.0 desc = """\ Processing time (in seconds) above which a request route is treated as "slow" by the ``gthread`` worker when :ref:`enable-adaptive-queueing`