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
In FilterInvoker ,according to the context "Next filter or invoker is null!" should be "Next filter and invoker is null!"
FilterInvoker
"Next filter or invoker is null!"
"Next filter and invoker is null!"
@Override public SofaResponse invoke(SofaRequest request) throws SofaRpcException { if (nextFilter == null && invoker == null) { throw new SofaRpcException(RpcErrorType.SERVER_FILTER, "Next filter or invoker is null!"); } return nextFilter == null ? invoker.invoke(request) : nextFilter.invoke(invoker, request); }
java -version
uname -a
The text was updated successfully, but these errors were encountered:
@OrezzerO Would you like to send a PR to fix this problem? We are extremely welcome your PR. 😆
Sorry, something went wrong.
@khotyn OK,I will try it.
we need to release 5.4.8 this week。
No branches or pull requests
Describe the bug
In
FilterInvoker
,according to the context"Next filter or invoker is null!"
should be"Next filter and invoker is null!"
Expected behavior
Actual behavior
Steps to reproduce
Minimal yet complete reproducer code (or GitHub URL to code)
Environment
java -version
):uname -a
):The text was updated successfully, but these errors were encountered: