diff --git a/src/lib/retry.ts b/src/lib/retry.ts index 20216db86..b73bc6cee 100644 --- a/src/lib/retry.ts +++ b/src/lib/retry.ts @@ -29,7 +29,7 @@ async function pause(delay: number) { /** * Configure the retry logic for http calls. - * By default, this retries any request that returns a 429 3 times. + * By default, this retries any request that returns an HTTP 429 response. */ export interface RetryConfiguration { /** @@ -39,7 +39,7 @@ export interface RetryConfiguration { enabled?: boolean; /** * Configure the max amount of retries the SDK should do. - * Defaults to 5. + * Defaults to 3. */ maxRetries?: number; /**