Suppress connection failure

pull/169/head
M66B 5 years ago
parent 61a6d6d322
commit b41e81e652

@ -499,6 +499,11 @@ public class Log {
ex.getCause() instanceof SocketException)
return null;
if (ex instanceof MessagingException &&
("connection failure".equals(ex.getMessage()) ||
"failed to create new store connection".equals(ex.getMessage())))
return null;
if (ex instanceof MessagingException &&
ex.getCause() instanceof ConnectionException &&
ex.getCause().getMessage() != null &&

Loading…
Cancel
Save