From bae5ffe0ca6be89f7a7aa318b31e35c935bdf4d4 Mon Sep 17 00:00:00 2001 From: Alex Musayev Date: Sun, 19 Jul 2026 00:23:07 +0300 Subject: [PATCH] Correct rate limit retry documentation --- app/jobs/rate_limited.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/jobs/rate_limited.rb b/app/jobs/rate_limited.rb index ce29761c0..9f11d1f14 100644 --- a/app/jobs/rate_limited.rb +++ b/app/jobs/rate_limited.rb @@ -7,7 +7,7 @@ # `perform`, a deferral never reaches the error reporter — only a give-up does. # # Reschedules wait retry_after (plus jitter), up to MAX_ATTEMPTS, then report -# once and stop. The recurring schedulers re-kick later, so giving up isn't final. +# once and stop. module RateLimited MAX_ATTEMPTS = 10 JITTER_SECONDS = 5