Closed tanaka0x closed 6 years ago
v-spot-wsにエラーハンドラを追加すれば落ちなくなるみたいです
// VSpotWSServer.js
// ...
wsProxy(ws, {
// ...
})
ws.on('error', async function onError (e) {
debug('error', e)
connector.disconnect()
})
ws.on('close', async function onClose () {
// ...
})
// ...
PR大歓迎
クライアント側がwebsocketの終了手順を正しく行わない場合にRSTパケットが送られ、アプリケーションが終了してしまう