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 Quarkus run with GRPC, it complains about legacy GRPC support and recommends to disable a separate server with an option: quarkus.grpc.server.use-separate-server=false. If the option is added, grpc is accessible on the same port as http, ie it is described by variable quarkus.http.port and not by quarkus.grpc.server.port. Unfortunately, in such case our GRPC service still tries to access grpc port (eg: [1]) and fails.
The text was updated successfully, but these errors were encountered:
fedinskiy
changed the title
GrpcService is not compatible with grpc server on the same port
GrpcService is not compatible with grpc server running on the same port as http
Feb 21, 2024
When Quarkus run with GRPC, it complains about legacy GRPC support and recommends to disable a separate server with an option:
quarkus.grpc.server.use-separate-server=false
. If the option is added, grpc is accessible on the same port as http, ie it is described by variablequarkus.http.port
and not byquarkus.grpc.server.port
. Unfortunately, in such case our GRPC service still tries to access grpc port (eg: [1]) and fails.[1] https://github.com/quarkus-qe/quarkus-test-framework/blob/main/quarkus-test-core/src/main/java/io/quarkus/test/services/quarkus/LocalhostQuarkusApplicationManagedResource.java#L101-L103
The text was updated successfully, but these errors were encountered: