From 0a55daff1ae5c7c19632c11153b4b786b9f92012 Mon Sep 17 00:00:00 2001 From: Aloysius Pendergast Date: Fri, 11 Oct 2019 10:51:14 +0200 Subject: [PATCH] Restore default session timeout --- app/session.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/session.js b/app/session.js index 1e935433..b227c43e 100644 --- a/app/session.js +++ b/app/session.js @@ -19,8 +19,8 @@ const SUPPORTED_SUBSCRIPTIONS = ['tickers','orderBooks','trades','klines']; const PING_TIMEOUT = internalConfig.get('keepalive').clients; // how many seconds should we wait before destroying a session without WS connection (10 min) -//const SESSION_TIMEOUT = 600; -const SESSION_TIMEOUT = 30 ; +const SESSION_TIMEOUT = 600; +//const SESSION_TIMEOUT = 30 ; /** * Class which handles subscriptions related to multiple exchanges for a single session (same session id can be used by multiple WS client connections)