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 b387621 commit cf3f8a9Copy full SHA for cf3f8a9
test/integration/testutils/retry.go
@@ -18,5 +18,8 @@ var (
18
RetryableTransientErrors = map[string]string{
19
// Error code 409 for concurrent policy changes.
20
".*Error 409.*There were concurrent policy changes.*": "Concurrent policy changes.",
21
+
22
+ // API Rate limit exceeded errors can be retried.
23
+ ".*rateLimitExceeded.*": "Rate limit exceeded.",
24
}
25
)
0 commit comments