From 082b81598927167852afc493cf79dfcad72effc5 Mon Sep 17 00:00:00 2001 From: Maciek Nowacki Date: Wed, 3 Mar 2021 08:51:13 -0700 Subject: [PATCH] commenting-out this.ws.ping test as it appears broken --- src/clients/clientBase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clients/clientBase.ts b/src/clients/clientBase.ts index 4139ac7..1ed82bb 100644 --- a/src/clients/clientBase.ts +++ b/src/clients/clientBase.ts @@ -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}); }