commenting-out this.ws.ping test as it appears broken

This commit is contained in:
Maciek Nowacki 2021-03-03 08:51:13 -07:00
parent 3e78524a6d
commit 082b815989

View File

@ -51,7 +51,7 @@ class ClientBase {
logger.accessLog.info(`client (${this.id}) ponged.`);
this.ws.pong();
}
this.heartbeat = setInterval(() => { this.ws.ping('ping') }, 30000);
//this.heartbeat = setInterval(() => { this.ws.ping('ping') }, 30000);
logger.accessLog.info('Client Created', {data});
}