changeset 1078:5f398922f0a3

mod_statistics/top.lua: Keep sessions displayed for 10s (instead of 3s)
author Kim Alvefur <zash@zash.se>
date Sat, 15 Jun 2013 21:01:28 +0100
parents b73d44afdafa
children 87a091f88a1d
files mod_statistics/top.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_statistics/top.lua	Sat Jun 15 20:57:18 2013 +0100
+++ b/mod_statistics/top.lua	Sat Jun 15 21:01:28 2013 +0100
@@ -6,7 +6,7 @@
 local stats = require "stats".stats;
 local time = require "socket".gettime;
 
-local sessions_idle_after = 3;
+local sessions_idle_after = 10;
 local stanza_names = {"message", "presence", "iq"};
 
 local top = {};