From 610ca9970bb1fe5b3f41fb847a99d7478299e3b2 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 1 Mar 2026 11:58:08 +0100 Subject: [PATCH] lowered coder ping max interval to 4.5 hours --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 09e5728..aeb43bb 100644 --- a/src/config.js +++ b/src/config.js @@ -28,7 +28,7 @@ export const config = { coderUserId: process.env.CODER_USER_ID || null, maxCoderPingIntervalMs: 6 * 60 * 60 * 1000, coderPingMinIntervalMs: process.env.CODER_PING_MIN_MS ? parseInt(process.env.CODER_PING_MIN_MS, 10) : 6 * 60 * 60 * 1000, - coderPingMaxIntervalMs: process.env.CODER_PING_MAX_MS ? parseInt(process.env.CODER_PING_MAX_MS, 10) : 8 * 60 * 60 * 1000, + coderPingMaxIntervalMs: process.env.CODER_PING_MAX_MS ? parseInt(process.env.CODER_PING_MAX_MS, 10) : 4.5 * 60 * 60 * 1000, shortTermLimit: 10, memoryDbFile: process.env.MEMORY_DB_FILE ? path.resolve(process.env.MEMORY_DB_FILE) : defaultMemoryDbFile, legacyMemoryFile,