@orangecheck/me-client / WithRateLimitRetryOptions
Interface: WithRateLimitRetryOptions
Defined in: me-client/src/transport.ts:132
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
<a id="property-basebackoffms"></a> baseBackoffMs? | number | Floor backoff in milliseconds when no Retry-After is present. Multiplied by 2^attempt for exponential growth. Default 250ms. | me-client/src/transport.ts:143 |
<a id="property-maxretries"></a> maxRetries? | number | Maximum retry attempts on 429. Default 2 (= up to 3 total invocations of the wrapped function). | me-client/src/transport.ts:135 |
<a id="property-maxretryafterseconds"></a> maxRetryAfterSeconds? | number | Cap on Retry-After we'll actually honor in seconds. Some server configs return very large values; the SDK refuses to sleep beyond this and re-throws the original error so the caller decides. Default 30. | me-client/src/transport.ts:140 |