fix: allow 90d analytics window

This commit is contained in:
Esdras Renan 2025-11-19 16:02:37 -03:00
parent a4b407c56c
commit e1ecf20346

View file

@ -52,7 +52,7 @@ export const ONE_DAY_MS = 24 * 60 * 60 * 1000;
const REPORTS_PAGE_SIZE = 200; const REPORTS_PAGE_SIZE = 200;
const RESOLVED_CHUNK_MS = 6 * 60 * 60 * 1000; const RESOLVED_CHUNK_MS = 6 * 60 * 60 * 1000;
const MAX_RANGE_DAYS = 14; const MAX_RANGE_DAYS = 90;
const MAX_RANGE_MS = MAX_RANGE_DAYS * ONE_DAY_MS; const MAX_RANGE_MS = MAX_RANGE_DAYS * ONE_DAY_MS;
const CACHE_TTL_MS = 60_000; const CACHE_TTL_MS = 60_000;
const LOCK_TTL_MS = 45_000; const LOCK_TTL_MS = 45_000;