From da7a02b2826bfb29337b69febbb5df3515fadc64 Mon Sep 17 00:00:00 2001 From: devthejo Date: Sun, 6 Jul 2025 17:39:40 +0200 Subject: [PATCH] fix: device geodata max age to 36h --- services/watchers/src/constants/time.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/watchers/src/constants/time.js b/services/watchers/src/constants/time.js index a8ee768..94c5006 100644 --- a/services/watchers/src/constants/time.js +++ b/services/watchers/src/constants/time.js @@ -8,7 +8,7 @@ module.exports = { SCAN_AUTO_CLOSE_CRON: "15 * * * *", // At minute 15 SCAN_AUTO_ARCHIVE_CRON: "0 4 * * *", // At 4:00 RELATIVE_UNREGISTERED_RECONCILIATION_CRON: "0 4 * * *", // At 4:00 - DEVICE_GEODATA_MAX_AGE: "48 hours", // Maximum age before removal from hot storage + DEVICE_GEODATA_MAX_AGE: "36 hours", // Maximum age before removal from hot storage } // cheat on https://crontab.guru/