| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 325d86a commit 8d2da9e
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -179,11 +179,6 @@ | |||
| 179 | 179 | <groupId>io.grpc</groupId> | |
| 180 | 180 | <artifactId>grpc-core</artifactId> | |
| 181 | 181 | </dependency> | |
| 182 | - <dependency> | ||
| 183 | - <groupId>io.grpc</groupId> | ||
| 184 | - <artifactId>grpc-grpclb</artifactId> | ||
| 185 | - <scope>runtime</scope> | ||
| 186 | - </dependency> | ||
| 187 | 182 | <dependency> | |
| 188 | 183 | <groupId>io.grpc</groupId> | |
| 189 | 184 | <artifactId>grpc-googleapis</artifactId> | |
@@ -698,11 +693,10 @@ | |||
| 698 | 693 | <artifactId>maven-dependency-plugin</artifactId> | |
| 699 | 694 | <configuration> | |
| 700 | 695 | <!-- | |
| 701 | - grpc-grpclb is used at runtime using reflection | ||
| 702 | 696 | grpc-auth is not directly used transitively, but is pulled to align with other grpc parts | |
| 703 | 697 | opencensus-impl-core is brought in transitively through opencensus-impl | |
| 704 | 698 | --> | |
| 705 | - <usedDependencies>io.grpc:grpc-auth,io.grpc:grpc-grpclb</usedDependencies> | ||
| 699 | + <usedDependencies>io.grpc:grpc-auth</usedDependencies> | ||
| 706 | 700 | <ignoredUsedUndeclaredDependencies> | |
| 707 | 701 | <ignoredUsedUndeclaredDependency>io.opencensus:opencensus-impl-core</ignoredUsedUndeclaredDependency> | |
| 708 | 702 | </ignoredUsedUndeclaredDependencies> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -356,10 +356,7 @@ public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProvi | |||
| 356 | 356 | .setMaxInboundMessageSize(MAX_MESSAGE_SIZE) | |
| 357 | 357 | .setKeepAliveTime(Duration.ofSeconds(30)) // sends ping in this interval | |
| 358 | 358 | .setKeepAliveTimeout( | |
| 359 | - Duration.ofSeconds(10)) // wait this long before considering the connection dead | ||
| 360 | - // Attempts direct access to CBT service over gRPC to improve throughput, | ||
| 361 | - // whether the attempt is allowed is totally controlled by service owner. | ||
| 362 | - .setAttemptDirectPath(true); | ||
| 359 | + Duration.ofSeconds(10)); // wait this long before considering the connection dead | ||
| 363 | 360 | } | |
| 364 | 361 | ||
| 365 | 362 | @SuppressWarnings("WeakerAccess") | |
| Back | FazBrowse Home | New Git URL |
0 commit comments