We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7232473 commit e77906cCopy full SHA for e77906c
2 files changed
lib/node/dist/index.js
lib/node/src/transport/WebSocketServer.js
@@ -94,7 +94,6 @@ class WebSocketServer extends TransportBase {
94
this._connectionLostInterval = setInterval(() => {
95
if (client.isAlive === false) {
96
console.log('server deemed client dead');
97
- this._stopConnectionLostInterval();
98
return client.terminate();
99
}
100
@@ -117,7 +116,6 @@ class WebSocketServer extends TransportBase {
117
116
stop () {
118
const client = this._transportConfig.getClient();
119
120
121
client.terminate();
122
123
return this;
0 commit comments