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