We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78681e commit ffd0674Copy full SHA for ffd0674
1 file changed
hedgerules/internal/retry/retry.go
@@ -12,15 +12,15 @@ import (
12
13
// throttleCodes are AWS error codes that indicate rate limiting or throttling.
14
var throttleCodes = map[string]bool{
15
- "Throttling": true,
16
- "ThrottlingException": true,
17
- "RequestThrottled": true,
18
- "TooManyRequestsException": true,
+ "Throttling": true,
+ "ThrottlingException": true,
+ "RequestThrottled": true,
+ "TooManyRequestsException": true,
19
"ProvisionedThroughputExceededException": true,
20
- "TransactionInProgressException": true,
21
- "RequestLimitExceeded": true,
22
- "BandwidthLimitExceeded": true,
23
- "LimitExceededException": true,
+ "TransactionInProgressException": true,
+ "RequestLimitExceeded": true,
+ "BandwidthLimitExceeded": true,
+ "LimitExceededException": true,
24
}
25
26
// IsThrottle reports whether err is an AWS throttling or rate-limiting error.
0 commit comments