From 29876efcca1534a326fa7336a8a4c0c149153161 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 7 Jul 2023 01:23:03 +0300 Subject: [PATCH] increase ddos_detected limit to 3000 --- files/routes/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/wrappers.py b/files/routes/wrappers.py index 14f679ce9..9bc89893e 100644 --- a/files/routes/wrappers.py +++ b/files/routes/wrappers.py @@ -56,7 +56,7 @@ def calc_users(): g.loggedin_counter = len(loggedin) g.loggedout_counter = len(loggedout) - if g.loggedout_counter > 2000: + if g.loggedout_counter > 3000: if not get_setting('ddos_detected'): toggle_setting('ddos_detected') set_security_level('under_attack')