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
When using grpc to request the nacos server, I encountered a situation where it kept returning RequestHandler Not Found
{"resultCode":500,"errorCode":500,"message":"RequestHandler Not Found","success":false}
The screenshot below is an example of request parameters and responses
After reading the source code of nacos, I found that the full class name needs to be passed in order to successfully request.
This will be strange when connecting to multiple languages.
It might be better to replace the full class name with a meaningful alias
The text was updated successfully, but these errors were encountered:
Maybe we should replace the current implementation of strong Java semantics with something that makes sense, something like restful, etc
Sorry, something went wrong.
Absolutely we need.
The following commit has solved this problem.
3cfa183
Using simple class name to replace full class name.
No branches or pull requests
When using grpc to request the nacos server, I encountered a situation where it kept returning RequestHandler Not Found
The screenshot below is an example of request parameters and responses
After reading the source code of nacos, I found that the full class name needs to be passed in order to successfully request.
This will be strange when connecting to multiple languages.
It might be better to replace the full class name with a meaningful alias
The text was updated successfully, but these errors were encountered: