Skip to content

Commit

Permalink
fix: retry streaming subscriber connections on unknown (#92)
Browse files Browse the repository at this point in the history
* Retrying unknown errors
  • Loading branch information
hannahrogers-google committed Feb 20, 2020
1 parent 20293d1 commit d702a5c
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -36,6 +36,7 @@ static boolean isRetryable(Throwable error) {
case CANCELLED:
case RESOURCE_EXHAUSTED:
case ABORTED:
case UNKNOWN:
return true;
case UNAVAILABLE:
// TODO(pongad): check that ApiException propagate message properly.
Expand Down

0 comments on commit d702a5c

Please sign in to comment.