From d900da8cab8e9fe5dabc1846b8a50634ee11c967 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 11 May 2023 22:17:16 -0700 Subject: [PATCH] fix(metrics): increase max valid latency reporting time. Troubleshooting --- web/components/video/metrics/playback.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/video/metrics/playback.js b/web/components/video/metrics/playback.js index 94aa3b943..bd6338fa4 100644 --- a/web/components/video/metrics/playback.js +++ b/web/components/video/metrics/playback.js @@ -1,7 +1,7 @@ /* eslint-disable no-plusplus */ const URL_PLAYBACK_METRICS = `/api/metrics/playback`; const METRICS_SEND_INTERVAL = 10000; -const MAX_VALID_LATENCY_SECONDS = 40; // Anything > this gets thrown out. +const MAX_VALID_LATENCY_SECONDS = 100; // Anything > this gets thrown out. function getCurrentlyPlayingSegment(tech) { const targetMedia = tech.vhs.playlists.media();