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 9b6929b commit 4f28101Copy full SHA for 4f28101
gcloud-java-dns/src/main/java/com/google/gcloud/dns/DnsException.java
@@ -31,9 +31,12 @@ public class DnsException extends BaseServiceException {
31
32
// see: https://cloud.google.com/dns/troubleshooting
33
private static final Set<Error> RETRYABLE_ERRORS = ImmutableSet.of(
34
+ new Error(429, null),
35
new Error(500, null),
36
new Error(502, null),
- new Error(503, null));
37
+ new Error(503, null),
38
+ new Error(null, "userRateLimitExceeded"),
39
+ new Error(null, "rateLimitExceeded"));
40
private static final long serialVersionUID = 490302380416260252L;
41
42
public DnsException(IOException exception) {
0 commit comments