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
When using grpc-spring with io.grpc >= 1.66.0 server reflection is still offered in version v1alpha, which works except for #1136
It would be nice if grpc-spring could also offer server reflection v1 (in addtition to v1alpha for backward compatible).
Maybe you could add a switch for choosing if v1 and/or v1alpha should be offered for server reflection.
Using server reflection v1 is easy, i tested replacing ProtoReflectionService by ProtoReflectionServiceV1 in
io.grpc 1.66.0 added support for server reflection v1, see grpc/grpc-java#6724.
io.grpc now comes with
When using grpc-spring with io.grpc >= 1.66.0 server reflection is still offered in version v1alpha, which works except for #1136
It would be nice if grpc-spring could also offer server reflection v1 (in addtition to v1alpha for backward compatible).
Maybe you could add a switch for choosing if v1 and/or v1alpha should be offered for server reflection.
Using server reflection v1 is easy, i tested replacing
ProtoReflectionService
byProtoReflectionServiceV1
ingrpc-spring/grpc-server-spring-boot-starter/src/main/java/net/devh/boot/grpc/server/autoconfigure/GrpcReflectionServiceAutoConfiguration.java
Line 48 in a18aeeb
This works fine and even basic authentication works properly.
The text was updated successfully, but these errors were encountered: