We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f4c59 commit 42e6c73Copy full SHA for 42e6c73
src/lib/common/src/aws/backoff.ts
@@ -17,6 +17,8 @@ export function throttlingBackOff<T>(
17
18
// eslint-disable-next-line @typescript-eslint/no-explicit-any
19
export const isThrottlingError = (e: any) =>
20
+ e.code === 'InsufficientDeliveryPolicyException' || // Retry for ConfigService
21
+ e.code === 'NoAvailableDeliveryChannelException' || // Retry for ConfigService
22
e.code === 'TooManyRequestsException' ||
23
e.code === 'Throttling' ||
24
e.code === 'ThrottlingException' ||
0 commit comments