DBZ-356 Making sure connection closing exception isn't swallowed

This commit is contained in:
Gunnar Morling 2017-09-19 11:49:34 +02:00 committed by Jiri Pechanec
parent abaf233066
commit 79fefa3cce

View File

@ -191,6 +191,10 @@ private void closeConnections() {
throw rethrown;
}
if (closingException != null) {
throw new ConnectException(closingException);
}
}
}