Skip to content

Commit ffd0674

Browse files
committed
Fix formattin
1 parent e78681e commit ffd0674

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

hedgerules/internal/retry/retry.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import (
1212

1313
// throttleCodes are AWS error codes that indicate rate limiting or throttling.
1414
var throttleCodes = map[string]bool{
15-
"Throttling": true,
16-
"ThrottlingException": true,
17-
"RequestThrottled": true,
18-
"TooManyRequestsException": true,
15+
"Throttling": true,
16+
"ThrottlingException": true,
17+
"RequestThrottled": true,
18+
"TooManyRequestsException": true,
1919
"ProvisionedThroughputExceededException": true,
20-
"TransactionInProgressException": true,
21-
"RequestLimitExceeded": true,
22-
"BandwidthLimitExceeded": true,
23-
"LimitExceededException": true,
20+
"TransactionInProgressException": true,
21+
"RequestLimitExceeded": true,
22+
"BandwidthLimitExceeded": true,
23+
"LimitExceededException": true,
2424
}
2525

2626
// IsThrottle reports whether err is an AWS throttling or rate-limiting error.

0 commit comments

Comments
 (0)