Server keepalive from 1 min to 2 min

This commit is contained in:
Chrystian Huot 2020-07-23 09:28:07 -04:00
parent ec5974cad1
commit a516752b2b

View file

@ -42,7 +42,7 @@ class WebSocket {
ws.ping(); ws.ping();
} }
}); });
}, 60 * 1000); }, 2 * 60 * 1000);
this.wss = new WS.Server({ noServer: true }); this.wss = new WS.Server({ noServer: true });