Increase stale connections audit timer again

This commit is contained in:
Akkadius 2017-10-03 16:58:37 -05:00
parent 279e3ed5bd
commit 8d91e033f2
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -471,7 +471,7 @@ function stale_connections_audit() {
/* Keepalive - kill stale connections (30s poll) */
const interval = setInterval(function ping() {
stale_connections_audit();
}, 3000);
}, 30000);
var socket_clients = 0;