add to the receive timeout exception the request id that it timed out on
This commit is contained in:
parent
2a7f964ca2
commit
bc2dc9465a
|
@ -37,7 +37,13 @@ public class ActionTransportException extends TransportException {
|
|||
}
|
||||
|
||||
public ActionTransportException(String name, TransportAddress address, String action, Throwable cause) {
|
||||
super(buildMessage(name, address, action), cause);
|
||||
super(buildMessage(name, address, action, null), cause);
|
||||
this.address = address;
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
public ActionTransportException(String name, TransportAddress address, String action, String msg, Throwable cause) {
|
||||
super(buildMessage(name, address, action, msg), cause);
|
||||
this.address = address;
|
||||
this.action = action;
|
||||
}
|
||||
|
@ -56,7 +62,7 @@ public class ActionTransportException extends TransportException {
|
|||
return action;
|
||||
}
|
||||
|
||||
private static String buildMessage(String name, TransportAddress address, String action) {
|
||||
private static String buildMessage(String name, TransportAddress address, String action, String msg) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if (name != null) {
|
||||
sb.append('[').append(name).append(']');
|
||||
|
@ -67,6 +73,9 @@ public class ActionTransportException extends TransportException {
|
|||
if (action != null) {
|
||||
sb.append('[').append(action).append(']');
|
||||
}
|
||||
if (msg != null) {
|
||||
sb.append(" ").append(msg);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,6 +30,10 @@ public class ReceiveTimeoutTransportException extends ActionTransportException {
|
|||
super(node.name(), node.address(), action, null);
|
||||
}
|
||||
|
||||
public ReceiveTimeoutTransportException(DiscoveryNode node, String action, String msg) {
|
||||
super(node.name(), node.address(), action, msg, null);
|
||||
}
|
||||
|
||||
// @Override public Throwable fillInStackTrace() {
|
||||
// return fillStack();
|
||||
// }
|
||||
|
|
|
@ -313,7 +313,7 @@ public class TransportService extends AbstractLifecycleComponent<TransportServic
|
|||
if (holder != null) {
|
||||
// add it to the timeout information holder, in case we are going to get a response later
|
||||
timeoutInfoHandlers.put(requestId, new TimeoutInfoHolder(holder.node(), holder.action()));
|
||||
holder.handler().handleException(new ReceiveTimeoutTransportException(holder.node(), holder.action()));
|
||||
holder.handler().handleException(new ReceiveTimeoutTransportException(holder.node(), holder.action(), "request_id [" + requestId + "]"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue