Increase the timeout for "repl" sessions

refs #7805
This commit is contained in:
Gunnar Beutner 2014-12-16 19:51:33 +01:00
parent f800630c10
commit 96626f4eca
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ static void ScriptFrameCleanupHandler(void)
typedef std::pair<String, LivestatusScriptFrame> KVPair;
BOOST_FOREACH(const KVPair& kv, l_LivestatusScriptFrames) {
if (kv.second.Seen < Utility::GetTime() - 60)
if (kv.second.Seen < Utility::GetTime() - 1800)
cleanup_keys.push_back(kv.first);
}