Close and reconnect on websocket error
This commit is contained in:
parent
e93b647a1a
commit
931976ada6
@ -52,7 +52,11 @@ export default class Socket extends EventListenerBase<{
|
|||||||
|
|
||||||
this.log.error('close execution');
|
this.log.error('close execution');
|
||||||
|
|
||||||
this.ws.close();
|
try {
|
||||||
|
this.ws.close();
|
||||||
|
} catch(err) {
|
||||||
|
|
||||||
|
}
|
||||||
this.handleClose();
|
this.handleClose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,7 +68,8 @@ export default class Socket extends EventListenerBase<{
|
|||||||
};
|
};
|
||||||
|
|
||||||
private handleError = (e: Event) => {
|
private handleError = (e: Event) => {
|
||||||
this.log.error(e);
|
this.log.error('handleError', e);
|
||||||
|
this.close();
|
||||||
};
|
};
|
||||||
|
|
||||||
private handleClose = () => {
|
private handleClose = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user