We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a gRPC end point which works fine when I run it via "net" library. When I try to create a wrapper around it using Iris the code breaks.
To Reproduce Steps to reproduce the behavior:
func SetupApplicationWithGRPC() *iris.Application { app := iris.New() grpcServer := grpc.NewServer() authenticationServer := &authentication.AuthenticationServer{} pb.RegisterAuthenticationServer(grpcServer, authenticationServer) // fmt.Print(pb.File_authentication_proto.Services().Get(0).FullName()) mvc.New(app).Handle(authenticationServer, mvc.GRPC{ Server: grpcServer, ServiceName: "authentication.Authentication", Strict: false, }) return app; }
The app breaks at rootApp.Handle.
rootApp.Handle
Expected behavior The server should spin up normally with an HTTP wrapper around it.
Screenshots
Desktop (please complete the following information):
iris.Version
The text was updated successfully, but these errors were encountered:
Got it resolved. Issue was not all rpc functions from proto were implemented.
Sorry, something went wrong.
kataras
No branches or pull requests
I have a gRPC end point which works fine when I run it via "net" library. When I try to create a wrapper around it using Iris the code breaks.
To Reproduce
Steps to reproduce the behavior:
The app breaks at
rootApp.Handle
.Expected behavior
The server should spin up normally with an HTTP wrapper around it.
Screenshots
Desktop (please complete the following information):
iris.Version
The text was updated successfully, but these errors were encountered: