Skip to content

Commit 2a51320

Browse files
fix: [file] set longer polling timeouts for filestore DeleteBackup (#9216)
* fix: set longer polling timeouts for filestore DeleteBackup PiperOrigin-RevId: 516516980 Source-Link: googleapis/googleapis@0f334db Source-Link: https://github.com/googleapis/googleapis-gen/commit/b375f6fe28fbff90b599aca6a421004d35cdeb80 Copy-Tag: eyJwIjoiamF2YS1maWxlc3RvcmUvLk93bEJvdC55YW1sIiwiaCI6ImIzNzVmNmZlMjhmYmZmOTBiNTk5YWNhNmE0MjEwMDRkMzVjZGViODAifQ== * 🦉 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>
1 parent 1cd532f commit 2a51320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1388,13 +1388,13 @@ private static Builder initDefaults(Builder builder) {
13881388
.setPollingAlgorithm(
13891389
OperationTimedPollAlgorithm.create(
13901390
RetrySettings.newBuilder()
1391-
.setInitialRetryDelay(Duration.ofMillis(10000L))
1391+
.setInitialRetryDelay(Duration.ofMillis(30000L))
13921392
.setRetryDelayMultiplier(1.5)
13931393
.setMaxRetryDelay(Duration.ofMillis(60000L))
13941394
.setInitialRpcTimeout(Duration.ZERO)
13951395
.setRpcTimeoutMultiplier(1.0)
13961396
.setMaxRpcTimeout(Duration.ZERO)
1397-
.setTotalTimeout(Duration.ofMillis(660000L))
1397+
.setTotalTimeout(Duration.ofMillis(7200000L))
13981398
.build()));
13991399

14001400
builder

0 commit comments

Comments
 (0)