Description
Good day,
I'm working on a python plugin that I've been able to verify works as a grpc server to a python client, completely outside of the go-plugin framework.
The issue I'm running into is that before I make any calls against the plugin RPC service, I see the following warning.
[WARN] stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = Method not found!"
However, I've no indication what method is being attempted to know what is not implemented. How can I debug this.
Also note, that even though I see this message, later in my code, I'm able to call the two RCP methods that I expect to work, and they do indeed return the desired results. I though this might be due to health checking against the python plugin, but I implemented it as written in the python example.
Can you give clues as to why this message is showing up or how to debug this? If code samples are required for understanding, I can provide some samples.