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

Commit

Permalink
fix(regen): set default totalTimeout to 5 minutes (from 10 minutes) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and chingor13 committed Jan 17, 2020
1 parent c2d804a commit d1f96d0
Show file tree
Hide file tree
Showing 3 changed files with 1,254 additions and 4 deletions.
Expand Up @@ -295,7 +295,7 @@ public static class Builder extends StubSettings.Builder<TenantServiceStubSettin
.setInitialRpcTimeout(Duration.ofMillis(20000L))
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ofMillis(20000L))
.setTotalTimeout(Duration.ofMillis(600000L))
.setTotalTimeout(Duration.ofMillis(300000L))
.build();
definitions.put("default", settings);
RETRY_PARAM_DEFINITIONS = definitions.build();
Expand Down
6 changes: 6 additions & 0 deletions renovate.json
Expand Up @@ -58,6 +58,12 @@
"^com.google.cloud:google-cloud-"
],
"ignoreUnstable": false
},
{
"packagePatterns": [
"^com.fasterxml.jackson.core"
],
"groupName": "jackson dependencies"
}
],
"semanticCommits": true
Expand Down

0 comments on commit d1f96d0

Please sign in to comment.