From b4b2ef3d809aabf1a81629f7e434e9c0cdc5216d Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 12 Oct 2025 10:05:30 -0700 Subject: [PATCH] Update system.py expand the timers for game play to 3 days for cleanup --- modules/system.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/system.py b/modules/system.py index 2e67e50..0f84299 100644 --- a/modules/system.py +++ b/modules/system.py @@ -22,11 +22,11 @@ multiPingList = [{'message_from_id': 0, 'count': 0, 'type': '', 'deviceID': 0, ' interface_retry_count = 3 # Memory Management Constants -MAX_MSG_HISTORY = 100 -MAX_CMD_HISTORY = 200 -MAX_SEEN_NODES = 500 +MAX_MSG_HISTORY = 250 +MAX_CMD_HISTORY = 250 +MAX_SEEN_NODES = 1000 CLEANUP_INTERVAL = 86400 # 24 hours in seconds -GAMEDELAY = CLEANUP_INTERVAL # the age of game entries in seconds before they are cleaned up +GAMEDELAY = 3 * CLEANUP_INTERVAL # 3 days in seconds # Ping Configuration if ping_enabled: