From 4ffd9e852c0c3c9c4b8cfa9b8b5175bdb9ed7e13 Mon Sep 17 00:00:00 2001 From: Thomas Faour Date: Sun, 19 Jul 2026 17:38:21 -0400 Subject: [PATCH] Raise MAX_QUEUE_TARGET_LEN from 50 to 5000 --- server/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app/main.py b/server/app/main.py index c78e31b..faff6e5 100644 --- a/server/app/main.py +++ b/server/app/main.py @@ -27,7 +27,7 @@ templates = Jinja2Templates(directory="app/templates") MIN_REFRESH_INTERVAL_S = 60 MAX_REFRESH_INTERVAL_S = 86400 MIN_QUEUE_TARGET_LEN = 5 -MAX_QUEUE_TARGET_LEN = 50 +MAX_QUEUE_TARGET_LEN = 5000 MANAGEMENT_TOKEN_COOKIE = "mgmt_token"