Skip to content

Commit cf3f8a9

Browse files
authored
chore(CI): retry on quota exceeded (#1847)
1 parent b387621 commit cf3f8a9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/integration/testutils/retry.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ var (
1818
RetryableTransientErrors = map[string]string{
1919
// Error code 409 for concurrent policy changes.
2020
".*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.",
2124
}
2225
)

0 commit comments

Comments
 (0)