Skip to content

Commit

Permalink
pubsub: retry on ABORTED (#2461)
Browse files Browse the repository at this point in the history
  • Loading branch information
pongad authored Sep 23, 2017
1 parent a8e595d commit 20678f4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public static boolean isRetryable(Throwable error) {
case INTERNAL:
case CANCELLED:
case RESOURCE_EXHAUSTED:
case ABORTED:
return true;
case UNAVAILABLE:
if (statusRuntimeException.getMessage().contains("Server shutdownNow invoked")) {
Expand Down

0 comments on commit 20678f4

Please sign in to comment.