add the request id to the timeout message
This commit is contained in:
parent
c59bfea43c
commit
442f1d7677
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue