Connection failure is unrecoverable

This commit is contained in:
M66B 2019-06-13 14:31:46 +02:00
parent e7b9eb56b9
commit 02e58770e9
1 changed files with 2 additions and 1 deletions

View File

@ -2246,7 +2246,8 @@ class Core {
void error(Throwable ex) {
if (ex instanceof MessagingException &&
(ex.getCause() instanceof SocketException ||
("connection failure".equals(ex.getMessage()) ||
ex.getCause() instanceof SocketException ||
ex.getCause() instanceof ConnectionException))
recoverable = false;