add the request id to the timeout message

This commit is contained in:
kimchy 2010-10-26 11:22:02 +02:00
parent c59bfea43c
commit 442f1d7677
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ public class TransportService extends AbstractLifecycleComponent<TransportServic
// lets see if its in the timeout holder
TimeoutInfoHolder timeoutInfoHolder = timeoutInfoHandlers.remove(requestId);
if (timeoutInfoHolder != null) {
logger.warn("Transport response handler timed out, action [{}], node [{}], id [{}]", timeoutInfoHolder.action(), timeoutInfoHolder.node(), requestId);
logger.warn("Received response for a request that has timed out, action [{}], node [{}], id [{}]", timeoutInfoHolder.action(), timeoutInfoHolder.node(), requestId);
} else {
logger.warn("Transport response handler not found of id [{}]", requestId);
}