Added hint to exception most often caused by send timeout

This commit is contained in:
Iwein Fuld
2010-01-13 18:22:25 +00:00
parent 53f59d42a3
commit f13a09f926

View File

@@ -117,7 +117,8 @@ public abstract class AbstractReplyProducingMessageHandler extends AbstractMessa
Message<?> replyMessage = this.createReplyMessage(result, requestHeaders);
if (!this.sendReplyMessage(replyMessage, replyChannel)) {
throw new MessageDeliveryException(replyMessage,
"failed to send reply Message to channel '" + replyChannel + "'");
"failed to send reply Message to channel '" + replyChannel + "'. Consider increasing the " +
"send timeout of this endpoint.");
}
}