Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ plugins {
id 'com.github.sherter.google-java-format' version '0.9' apply false
id 'net.ltgt.errorprone' version '2.0.2' apply false
id 'org.cadixdev.licenser' version '0.6.1'
id 'name.remal.check-updates' version '1.5.0' apply false
id 'com.palantir.git-version' version '0.12.3' apply false
id 'de.marcphilipp.nexus-publish' version '0.4.0' apply false
}
Expand Down
7 changes: 1 addition & 6 deletions gradle/dependencyManagement.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
// Run 'gradle checkUpdates' to find out which dependencies have newer versions
subprojects {
apply plugin: "name.remal.check-updates"
}

subprojects {
configurations.all {
//comes through grpc-api:gauava
//comes through grpc-api:guava
exclude group: 'org.checkerframework', module: 'checker-qual'
exclude group: 'com.google.j2objc', module: 'j2objc-annotations'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ public Builder setEnableHttps(boolean enableHttps) {
* <p><b>For example, let's consider you've called WorkflowClient#start, and this timeout is set
* to 1s, while {@link RpcRetryOptions.Builder#setExpiration(Duration)} is set to 5s, and the
* server is responding slowly. The first two RPC calls may time out and be retried, but if the
* third one completes in <1s, the overall call will successfully resolve.
* third one completes in &lt;1s, the overall call will successfully resolve.
*/
public Builder setRpcTimeout(Duration timeout) {
this.rpcTimeout = Objects.requireNonNull(timeout);
Expand Down