Skip to content

Commit

Permalink
fix: remove FAILED_PRECONDITION from connection retry code (#2214)
Browse files Browse the repository at this point in the history
* fix: remove FAILED_PRECONDITION from connection retry code.

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
yirutang and gcf-owl-bot[bot] committed Jul 28, 2023
1 parent fb72c18 commit b8e8a24
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -936,7 +936,6 @@ private boolean isConnectionErrorRetriable(Throwable t) {
|| status.getCode() == Code.UNAVAILABLE
|| status.getCode() == Code.CANCELLED
|| status.getCode() == Code.INTERNAL
|| status.getCode() == Code.FAILED_PRECONDITION
|| status.getCode() == Code.DEADLINE_EXCEEDED;
}

Expand Down

0 comments on commit b8e8a24

Please sign in to comment.