Skip to content

Commit

Permalink
更新流控文案
Browse files Browse the repository at this point in the history
  • Loading branch information
vintagewang committed Nov 15, 2013
1 parent 66ab19d commit a2ab1dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,13 @@ public void operationComplete(ChannelFuture future) throws Exception {
}
catch (RejectedExecutionException e) {
plog.warn(RemotingHelper.parseChannelRemoteAddr(ctx.channel()) //
+ ", system thread pool busy, RejectedExecutionException " //
+ ", too many requests and system thread pool busy, RejectedExecutionException " //
+ pair.getObject2().toString() //
+ " request code: " + cmd.getCode());
if (!cmd.isOnewayRPC()) {
final RemotingCommand response =
RemotingCommand.createResponseCommand(ResponseCode.SYSTEM_BUSY_VALUE,
"system thread pool busy, please try another node");
"too many requests and system thread pool busy, please try another server");
response.setOpaque(cmd.getOpaque());
ctx.writeAndFlush(response);
}
Expand Down

0 comments on commit a2ab1dd

Please sign in to comment.