You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proto files with rpc definitions like rpc A_B(Request) returns (Reply) or rpc Assert(Request) returns (Reply) will compile into stubs with methods aB and assert_ respectively. This is due to an effort of grpc-java to honor the Java Bean Spec.
When annotating these methods with io.smallrye.common.annotation.Blocking, like:
... the BlockingServerInterceptor will not work for these converted method names, ultimately leading to failure at runtime if blocking behaviour is detected.
Expected behavior
It should work just as it does for "normal" rpc methods.
Actual behavior
Fails at runtime if i/o, etc is used.
How to Reproduce?
No response
Output of uname -a or ver
No response
Output of java -version
No response
Quarkus version or git rev
No response
Build tool (ie. output of mvnw --version or gradlew --version)