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?
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?
Share Improve this question asked Jan 20 at 5:07 sparkplugsparkplug 1,3662 gold badges16 silver badges35 bronze badges1 Answer
Reset to default 0In 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.