From 39311ce3b3c1ff805eadff577f68037a213d4957 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Mon, 14 Jul 2025 23:20:12 +0200 Subject: [PATCH] Fix commit in group rate limit --- supervisor/jobs/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/jobs/const.py b/supervisor/jobs/const.py index d8f366be6..a92dfbeeb 100644 --- a/supervisor/jobs/const.py +++ b/supervisor/jobs/const.py @@ -83,7 +83,7 @@ class JobThrottle(StrEnum): THROTTLE = "throttle" # Skip if called too frequently RATE_LIMIT = "rate_limit" # Rate limiting with max calls per period GROUP_THROTTLE = "group_throttle" # Group version of THROTTLE - GROUP_RATE_LIMIT = "group_rate_limit" # Group version of THROTTLE_RATE_LIMIT + GROUP_RATE_LIMIT = "group_rate_limit" # Group version of RATE_LIMIT class JobExecutionLimit(StrEnum):