Alex Panchenko
Alex Panchenko
https://bz.apache.org/bugzilla/show_bug.cgi?id=64083 I had a situation when driver closed connection because of I/O error, bur connection has been added to the avaialble ones and then returned to another caller. The `testOn*`...
Another attempt to solve #1720 The only my motivation - if this would help with improving testcontainers support of junit5 :-)
Currently if some enum item a deprecated, then tsdoc is generated mentioning each item, and the deprecated ones are marked with `@deprecated`. ``` Values: - `First` - `Second` - @deprecated...
I think unary RPCs are used quite often, then in the service implementation we have to write 2 lines: ```java responseObserver.onNext(result); responseObserver.onCompleted(); ``` It seems logical to introduce a default...
* The `grpc-inprocess` module exists mostly for testing purposes, we don't need it at runtime. * The classes inside `grpc-netty-shaded` are repackaged, users are not supposed to access those internal...
java.lang.ClassCastException: cannot assign instance of com.google.common.collect.ImmutableList$SerializedForm to field com.foo.Bar.authorities of type java.util.Collection in instance of com.foo.Bar Serialization is used to clone an object, like so: clone = (Bar) org.springframework.util.SerializationUtils.deserialize( org.springframework.util.SerializationUtils.serialize(bar)...
TBD, instead of https://github.com/grpc/grpc-java/pull/11066 Just demonstrating the idea, without comments in code for now.
**What language does this apply to?** java runtime library **Describe the problem you are trying to solve.** It's a common practice to log java objects, however in case of protobuf-generated...