Alex Panchenko
Alex Panchenko
The warning is reported as `AbstractBlockingStub` is already annotated with `@CheckReturnValue`. `@CanIgnoreReturnValue` is documented as > This is the opposite of {@link CheckReturnValue}. It can be used inside classes or...
I guess the original intent of annotating `AbstractBlockingStub` was making sure that a result of a remote call is not discarded - focusing mostly the generated code: if a method...
I am not sure about if it's worth generating more classes like in blockingStubV), the corresponding improvements can be applied to the existing stub and configured via options - meaning...
nginx can close connection after the time specified by `grpc_read_timeout`, please try increasing that.
As I understand the connection is like this `grpc_client -> nginx -> grpc_server` if server does not send anything during grpc_read_timeout time, then connection is closed by nginx. As I...
@menvol3 Can you check nginx error.log?
@menvol3 That's not error.log, but access.log, which has some lines with status 408. Error log should contain more error details. Seems like we are slightly beyond the gRPC topic. In...
I think we can use the super constructor with 4 parameters which was introduced in java 1.7 ```diff diff --git a/api/src/main/java/io/grpc/StatusRuntimeException.java b/api/src/main/java/io/grpc/StatusRuntimeException.java index 68b816fc7..70c4d10f0 100644 --- a/api/src/main/java/io/grpc/StatusRuntimeException.java +++ b/api/src/main/java/io/grpc/StatusRuntimeException.java @@...
created as https://github.com/grpc/grpc-java/pull/11064
Hi, I have checked some modules, but not all. I think it would be more straightforward to use standard gradle way of building pom.xml instead of manual operations (not sure...