Skip to content

Commit 442f1d7

Browse files
committed
add the request id to the timeout message
1 parent c59bfea commit 442f1d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/elasticsearch/src/main/java/org/elasticsearch/transport/TransportService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class Adapter implements TransportServiceAdapter {
248248
// lets see if its in the timeout holder
249249
TimeoutInfoHolder timeoutInfoHolder = timeoutInfoHandlers.remove(requestId);
250250
if (timeoutInfoHolder != null) {
251-
logger.warn("Transport response handler timed out, action [{}], node [{}], id [{}]", timeoutInfoHolder.action(), timeoutInfoHolder.node(), requestId);
251+
logger.warn("Received response for a request that has timed out, action [{}], node [{}], id [{}]", timeoutInfoHolder.action(), timeoutInfoHolder.node(), requestId);
252252
} else {
253253
logger.warn("Transport response handler not found of id [{}]", requestId);
254254
}

0 commit comments

Comments
 (0)