INT-4552: UDP: Catch and log async send exceptions

JIRA: https://jira.spring.io/browse/INT-4552

**Cherry-pick to 5.0.x**
This commit is contained in:
Gary Russell
2018-11-13 10:34:53 -05:00
committed by Artem Bilan
parent 6902fd906d
commit ce3ac36dcd

View File

@@ -139,7 +139,7 @@ public class UnicastReceivingChannelAdapter extends AbstractInternetProtocolRece
throw new MessagingException("failed to receive DatagramPacket", e);
}
}
this.setListening(false);
setListening(false);
}
protected void sendAck(Message<byte[]> message) {
@@ -203,7 +203,12 @@ public class UnicastReceivingChannelAdapter extends AbstractInternetProtocolRece
if (message.getHeaders().containsKey(IpHeaders.ACK_ADDRESS)) {
sendAck(message);
}
sendMessage(message);
try {
sendMessage(message);
}
catch (Exception e) {
this.logger.error("Failed to send message " + message, e);
}
}
}