0

When using the code-first method with protobuf-net.Grpc.AspNetCore, I see the following messages:

[15:13:07 INF] [HTTP] Starting grpc server...
[15:13:07 DBG] Could not find bind method for App.Services.TestService.
[15:13:08 INF] RPC services being provided by App.Services.TestService: 3

I'm not sure if the "Could not find bind method" debug message indicates a problem or not. It occurs when the statement endpoints.MapGrpcService<TestService>(); is run.

The service methods all appear to work as intended when called. Should I be concerned about this message?

1 Answer 1

0

In my opinion, this is related with how code first works , I guess the debug info firstly check if the bind method is generated or not.

In the code-first model, services are registered without the traditional BindService method that is typically generated in the proto-first approach.

Sign up to request clarification or add additional context in comments.

1 Comment

This sounds about right. Would be nice to get a definitive answer rather than a guess though.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.