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

Commit 3fccffa

Browse files
feat: set longer polling timeouts for filestore DeleteInstance and DeleteSnapshot (#195)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 456849206 Source-Link: googleapis/googleapis@fc6a76e Source-Link: https://github.com/googleapis/googleapis-gen/commit/675d5266b9f35cf0e05370a540fd1db2aeceada2 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjc1ZDUyNjZiOWYzNWNmMGUwNTM3MGE1NDBmZDFkYjJhZWNlYWRhMiJ9
1 parent 6e81ea4 commit 3fccffa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

google-cloud-filestore/src/main/java/com/google/cloud/filestore/v1beta1/stub/CloudFilestoreManagerStubSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -824,13 +824,13 @@ private static Builder initDefaults(Builder builder) {
824824
.setPollingAlgorithm(
825825
OperationTimedPollAlgorithm.create(
826826
RetrySettings.newBuilder()
827-
.setInitialRetryDelay(Duration.ofMillis(5000L))
827+
.setInitialRetryDelay(Duration.ofMillis(60000L))
828828
.setRetryDelayMultiplier(1.5)
829-
.setMaxRetryDelay(Duration.ofMillis(45000L))
829+
.setMaxRetryDelay(Duration.ofMillis(360000L))
830830
.setInitialRpcTimeout(Duration.ZERO)
831831
.setRpcTimeoutMultiplier(1.0)
832832
.setMaxRpcTimeout(Duration.ZERO)
833-
.setTotalTimeout(Duration.ofMillis(300000L))
833+
.setTotalTimeout(Duration.ofMillis(900000L))
834834
.build()));
835835

836836
builder

0 commit comments

Comments
 (0)