grpc-java
grpc-java copied to clipboard
The Java gRPC implementation. HTTP/2 based RPC
Trying to upgrade Android plugin to 4.x as described in https://github.com/grpc/grpc-java/issues/8421#issue-973899271 with some minor workarounds, the build failed with a lint error: ``` FAILURE: Build failed with an exception. *...
gRFC A29 added XdsChannelCredentials, but the gRFC explicitly ignored the `sni` field. @dvilaverde in #11750 needs `sni`, so this issue was split out to track it. We'll need a small...
`cleanUpRouteDiscoveryState()` runs `cancelXdsResource()` for the old route: https://github.com/grpc/grpc-java/blob/486b8ba67f914f7f46f3549b48abe2c1ea2cc5d8/xds/src/main/java/io/grpc/xds/XdsNameResolver.java#L664-L675 That means on each LdsUpdate when the route is unchanged, we'll throw away caches for the route and then re-subscribe. I believe...
Consider the flow: 1. Watcher X is added for resource A 2. Resource A is received, but NACKed. Watcher X is called and told about the error 3. Watcher Y...
### What version of gRPC-Java are you using? `bazel_dep(name = "grpc-java", version = 1.69.0, repo_name = "io_grpc_grpc_java")` ### What did you expect to see? No Warnings. ### What did you...
#3305 put DoNotMock on StreamTracer saying that the mocks are not thread-safe. But [mockito claims they are](https://github.com/mockito/mockito/wiki/FAQ#is-mockito-thread-safe), except for stubbing and verify methods. We need to figure out where the...
This allows bzlmod version resolution and avoids ODR violations when importing the same dependency multiple times in different modules.
Hi! I'm on a journey to try to eradicate having bazel build protoc each time in favor of using prebuilt binaries. I'm really after kotlin, but it has a hard...