Fix order of logging parameters in ShardStateAction
This commit is contained in:
parent
7591f2047a
commit
af523c4236
|
@ -137,7 +137,7 @@ public class ShardStateAction extends AbstractComponent {
|
|||
try {
|
||||
channel.sendResponse(t);
|
||||
} catch (Throwable channelThrowable) {
|
||||
logger.warn("{} failed to send failure [{}] while failing shard [{}]", channelThrowable, t, request.shardRouting.shardId(), request.shardRouting);
|
||||
logger.warn("{} failed to send failure [{}] while failing shard [{}]", channelThrowable, request.shardRouting.shardId(), t, request.shardRouting);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue