Skip to content

Commit

Permalink
fix: [file] set longer polling timeouts for filestore DeleteBackup (#…
Browse files Browse the repository at this point in the history
…9216)

* fix: set longer polling timeouts for filestore DeleteBackup

PiperOrigin-RevId: 516516980

Source-Link: googleapis/googleapis@0f334db

Source-Link: googleapis/googleapis-gen@b375f6f
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>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Mar 15, 2023
1 parent 1cd532f commit 2a51320
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1388,13 +1388,13 @@ private static Builder initDefaults(Builder builder) {
.setPollingAlgorithm(
OperationTimedPollAlgorithm.create(
RetrySettings.newBuilder()
.setInitialRetryDelay(Duration.ofMillis(10000L))
.setInitialRetryDelay(Duration.ofMillis(30000L))
.setRetryDelayMultiplier(1.5)
.setMaxRetryDelay(Duration.ofMillis(60000L))
.setInitialRpcTimeout(Duration.ZERO)
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ZERO)
.setTotalTimeout(Duration.ofMillis(660000L))
.setTotalTimeout(Duration.ofMillis(7200000L))
.build()));

builder
Expand Down

0 comments on commit 2a51320

Please sign in to comment.