From 8d91e033f222f93239be06c52597a4a2a7d7f8ab Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 3 Oct 2017 16:58:37 -0500 Subject: [PATCH] Increase stale connections audit timer again --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 1f328a5..90575d9 100644 --- a/app.js +++ b/app.js @@ -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;