From d352ce00fa472083b41dff9c00a30f58eb972fea Mon Sep 17 00:00:00 2001 From: henrygd Date: Tue, 7 Oct 2025 17:28:48 -0400 Subject: [PATCH] allow a bit more latency in the one minute chart points (#1247) --- internal/site/src/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/site/src/lib/utils.ts b/internal/site/src/lib/utils.ts index b16191e2..720650d8 100644 --- a/internal/site/src/lib/utils.ts +++ b/internal/site/src/lib/utils.ts @@ -129,7 +129,7 @@ export const updateFavicon = (() => { export const chartTimeData: ChartTimeData = { "1m": { type: "1m", - expectedInterval: 1000, + expectedInterval: 2000, // allow a bit of latency for one second updates (#1247) label: () => t`1 minute`, format: (timestamp: string) => hourWithSeconds(timestamp), ticks: 3,