From dec9ed0cd6c8d5333f2dacb8a25ad4db0f437965 Mon Sep 17 00:00:00 2001 From: Alexandr Garbuzov Date: Sat, 4 Oct 2025 19:01:58 +0300 Subject: [PATCH] chore: add comment with issue link to the retryer rate limit detection logic (#4508) Co-authored-by: Alexandr --- backend/src/common/retryer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/common/retryer.js b/backend/src/common/retryer.js index 68672779..fac7ed0f 100644 --- a/backend/src/common/retryer.js +++ b/backend/src/common/retryer.js @@ -42,6 +42,7 @@ const retryer = async (fetcher, variables, retries = 0) => { ); // react on both type and message-based rate-limit signals. + // https://github.com/anuraghazra/github-readme-stats/issues/4425 const errors = response?.data?.errors; const errorType = errors?.[0]?.type; const errorMsg = errors?.[0]?.message || "";