Interface: RetryConfig
internal.RetryConfig
Configuration for the Axios request
Copy to Clipboard method.
Properties
backoffType
• Optional
Copy to Clipboard backoffType: "linear"
Copy to Clipboard | "static"
Copy to Clipboard | "exponential"
Copy to Clipboard
Backoff Type; 'linear', 'static' or 'exponential'.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:47
checkRetryAfter
• Optional
Copy to Clipboard checkRetryAfter: boolean
Copy to Clipboard
Whether to check for 'Retry-After' header in response and use value as delay. Defaults to true.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:51
currentRetryAttempt
• Optional
Copy to Clipboard currentRetryAttempt: number
Copy to Clipboard
The number of retries already attempted.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:13
httpMethodsToRetry
• Optional
Copy to Clipboard httpMethodsToRetry: string
Copy to Clipboard[]
The HTTP Methods that will be automatically retried. Defaults to ['GET','PUT','HEAD','OPTIONS','DELETE']
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:26
instance
• Optional
Copy to Clipboard instance: AxiosInstance
Copy to Clipboard
The instance of the axios object to which the interceptor is attached.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:21
maxRetryAfter
• Optional
Copy to Clipboard maxRetryAfter: number
Copy to Clipboard
Max permitted Retry-After value (in ms) - rejects if greater. Defaults to 5 mins.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:55
maxRetryDelay
• Optional
Copy to Clipboard maxRetryDelay: number
Copy to Clipboard
Ceiling for calculated delay (in ms) - delay will not exceed this value.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:59
noResponseRetries
• Optional
Copy to Clipboard noResponseRetries: number
Copy to Clipboard
When there is no response, the number of retries to attempt. Defaults to 2.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:43
onRetryAttempt
• Optional
Copy to Clipboard onRetryAttempt: (err
Copy to Clipboard: AxiosError
Copy to Clipboard<any
Copy to Clipboard, any
Copy to Clipboard>) => void
Copy to Clipboard
Type declaration
▸ (err
Copy to Clipboard): void
Copy to Clipboard
Function to invoke when a retry attempt is made.
Parameters
Name | Type |
---|---|
err Copy to Clipboard | AxiosError Copy to Clipboard<any Copy to Clipboard, any Copy to Clipboard> |
Returns
void
Copy to Clipboard
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:35
retry
• Optional
Copy to Clipboard retry: number
Copy to Clipboard
The number of times to retry the request. Defaults to 3.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:9
retryDelay
• Optional
Copy to Clipboard retryDelay: number
Copy to Clipboard
The amount of time to initially delay the retry. Defaults to 100.
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:17
shouldRetry
• Optional
Copy to Clipboard shouldRetry: (err
Copy to Clipboard: AxiosError
Copy to Clipboard<any
Copy to Clipboard, any
Copy to Clipboard>) => boolean
Copy to Clipboard
Type declaration
▸ (err
Copy to Clipboard): boolean
Copy to Clipboard
Function to invoke which determines if you should retry
Parameters
Name | Type |
---|---|
err Copy to Clipboard | AxiosError Copy to Clipboard<any Copy to Clipboard, any Copy to Clipboard> |
Returns
boolean
Copy to Clipboard
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:39
statusCodesToRetry
• Optional
Copy to Clipboard statusCodesToRetry: number
Copy to Clipboard[][]
The HTTP response status codes that will automatically be retried. Defaults to: [[100, 199], [429, 429], [500, 599]]
Defined in
medusa-js/node_modules/retry-axios/dist/src/index.d.ts:31