We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89da6a commit 00eadd3Copy full SHA for 00eadd3
google-cloud-spanner/src/test/java/com/google/cloud/spanner/InstanceAdminGaxTest.java
@@ -224,10 +224,10 @@ public void setUp() throws Exception {
224
RetrySettings retrySettingsWithLowTimeout =
225
RetrySettings.newBuilder()
226
.setInitialRetryDelay(Duration.ofMillis(1L))
227
- .setMaxRetryDelay(Duration.ofMillis(1L))
+ .setMaxRetryDelay(Duration.ofMillis(1000L))
228
.setInitialRpcTimeout(Duration.ofMillis(20L))
229
.setMaxRpcTimeout(Duration.ofMillis(200L))
230
- .setRetryDelayMultiplier(1.3)
+ .setRetryDelayMultiplier(1000.0d)
231
.setMaxAttempts(10)
232
.setTotalTimeout(Duration.ofMillis(200L))
233
.build();
0 commit comments