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 CreateInstance (#162)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 433266104

Source-Link: googleapis/googleapis@2522351

Source-Link: googleapis/googleapis-gen@2685770
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjY4NTc3MDdjMzdlNmM1NmFlOWIxOWE4ODAwYTVmODI3NzA5MmYwYyJ9
  • Loading branch information
gcf-owl-bot[bot] committed Mar 10, 2022
1 parent b1397b8 commit 64f20e6
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -704,13 +704,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(7200000L))
.build()));

builder
Expand Down

0 comments on commit 64f20e6

Please sign in to comment.