Better handling of IOException on client websocket when trying to send a payload.
This commit is contained in:
parent
45ab550d06
commit
ae634ab560
@ -173,10 +173,7 @@ public abstract class AbstractClientWS implements AbstractWS {
|
||||
throw ThrowableUtil.uncheck(ce.getCause(), false);
|
||||
}
|
||||
} catch (IOException ioe) {
|
||||
synchronized (socket) {
|
||||
socket.set(null);
|
||||
reconnectIfNecessary();
|
||||
}
|
||||
receiveListener.onError(socket.get(), ioe);
|
||||
throw ioe;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user