Fix commit in group rate limit

This commit is contained in:
Stefan Agner 2025-07-14 23:20:12 +02:00
parent f99e892f0e
commit 39311ce3b3
No known key found for this signature in database
GPG Key ID: AE01353D1E44747D

View File

@ -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):