Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Commit 574dcca

Browse files
feat: increase the logical timeout (retry deadline) to 5 minutes (#577)
* feat: increase the logical timeout (retry deadline) to 5 minutes PiperOrigin-RevId: 417448084 Source-Link: googleapis/googleapis@489719a Source-Link: https://github.com/googleapis/googleapis-gen/commit/97a80b4fa8a979b86c5e83d7ed8bb8d2d3eb6c40 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTdhODBiNGZhOGE5NzliODZjNWU4M2Q3ZWQ4YmI4ZDJkM2ViNmM0MCJ9 * 🦉 Updates from OwlBot 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>
1 parent b375cb3 commit 574dcca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google-cloud-bigqueryreservation/src/main/java/com/google/cloud/bigquery/reservation/v1/stub/ReservationServiceStubSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -793,10 +793,10 @@ public static class Builder
793793
.setInitialRetryDelay(Duration.ofMillis(100L))
794794
.setRetryDelayMultiplier(1.3)
795795
.setMaxRetryDelay(Duration.ofMillis(60000L))
796-
.setInitialRpcTimeout(Duration.ofMillis(60000L))
796+
.setInitialRpcTimeout(Duration.ofMillis(300000L))
797797
.setRpcTimeoutMultiplier(1.0)
798-
.setMaxRpcTimeout(Duration.ofMillis(60000L))
799-
.setTotalTimeout(Duration.ofMillis(60000L))
798+
.setMaxRpcTimeout(Duration.ofMillis(300000L))
799+
.setTotalTimeout(Duration.ofMillis(300000L))
800800
.build();
801801
definitions.put("retry_policy_1_params", settings);
802802
settings = RetrySettings.newBuilder().setRpcTimeoutMultiplier(1.0).build();

0 commit comments

Comments
 (0)