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

Commit

Permalink
feat: set longer polling timeouts for filestore DeleteInstance and De…
Browse files Browse the repository at this point in the history
…leteSnapshot (#195)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 456849206

Source-Link: googleapis/googleapis@fc6a76e

Source-Link: googleapis/googleapis-gen@675d526
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjc1ZDUyNjZiOWYzNWNmMGUwNTM3MGE1NDBmZDFkYjJhZWNlYWRhMiJ9
  • Loading branch information
gcf-owl-bot[bot] authored Jun 24, 2022
1 parent 6e81ea4 commit 3fccffa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -824,13 +824,13 @@ private static Builder initDefaults(Builder builder) {
.setPollingAlgorithm(
OperationTimedPollAlgorithm.create(
RetrySettings.newBuilder()
.setInitialRetryDelay(Duration.ofMillis(5000L))
.setInitialRetryDelay(Duration.ofMillis(60000L))
.setRetryDelayMultiplier(1.5)
.setMaxRetryDelay(Duration.ofMillis(45000L))
.setMaxRetryDelay(Duration.ofMillis(360000L))
.setInitialRpcTimeout(Duration.ZERO)
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ZERO)
.setTotalTimeout(Duration.ofMillis(300000L))
.setTotalTimeout(Duration.ofMillis(900000L))
.build()));

builder
Expand Down

0 comments on commit 3fccffa

Please sign in to comment.