From e0138fcf8c584580743dc8fdf51f3a1b8c00080a Mon Sep 17 00:00:00 2001 From: Sefinek Date: Wed, 11 Sep 2024 02:04:55 +0200 Subject: [PATCH] 2 * 60 * 60 * 1000 --- config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.js b/config.js index 84f983b..fc389c3 100644 --- a/config.js +++ b/config.js @@ -1,6 +1,6 @@ // Main interval of each cycle. -// In production mode, it's 1 hour, and in development mode, it's 8 seconds. -const CYCLE_INTERVAL = process.env.NODE_ENV === 'production' ? 60 * 60 * 1000 : 8 * 1000; +// In production mode, it's 2 hours, and in development mode, it's 8 seconds. +const CYCLE_INTERVAL = process.env.NODE_ENV === 'production' ? 2 * 60 * 60 * 1000 : 8 * 1000; // The minimum time that must pass after reporting an IP address before it can be reported again. // The required time is >= 15 minutes, according to AbuseIPDB API limits.