chore: Update dist

This commit is contained in:
GitHub Actions
2026-08-28 18:06:56 +00:00
parent 3852440c21
commit 7fdbbb8968
Generated Vendored
+1 -1
View File
@@ -74845,11 +74845,11 @@ async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, ba
info( info(
`Retry${opName}: attempt ${nextRetry} of ${maxRetries} failed: ${errorMessage(err)}. Retrying after ${Math.floor(delay)}ms.` `Retry${opName}: attempt ${nextRetry} of ${maxRetries} failed: ${errorMessage(err)}. Retrying after ${Math.floor(delay)}ms.`
); );
await sleep2(delay);
if (nextRetry >= maxRetries) { if (nextRetry >= maxRetries) {
info(`Retry${opName}: reached max retries (${maxRetries}); giving up.`); info(`Retry${opName}: reached max retries (${maxRetries}); giving up.`);
throw err; throw err;
} }
await sleep2(delay);
return await retryAndBackoff(fn, isRetryable, maxRetries, nextRetry, base, label); return await retryAndBackoff(fn, isRetryable, maxRetries, nextRetry, base, label);
} }
} }