Skip to content
New issue

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

返回状态码比较方式错误 #19

Merged
merged 1 commit into from
Sep 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
修改返回码比较bug
  • Loading branch information
todd136 committed Aug 13, 2019
commit 2002a4704e4aa61316409ca9ab7a2dc35d218693
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public NettyHttpClientHandler(final XxlRpcInvokerFactory xxlRpcInvokerFactory, S
protected void channelRead0(ChannelHandlerContext ctx, FullHttpResponse msg) throws Exception {

// valid status
if (HttpResponseStatus.OK != msg.status()) {
if (!HttpResponseStatus.OK.equals(msg.status())) {
throw new XxlRpcException("xxl-rpc response status invalid.");
}

Expand Down