lower the default max retries to reduce contention (#17975)

This commit is contained in:
Sehoon Shon
2026-01-30 15:00:31 -05:00
committed by GitHub
parent 7a947a272c
commit 0f8d41c075
2 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ export interface RetryOptions {
}
const DEFAULT_RETRY_OPTIONS: RetryOptions = {
maxAttempts: 10,
maxAttempts: 3,
initialDelayMs: 5000,
maxDelayMs: 30000, // 30 seconds
shouldRetryOnError: isRetryableError,