From 817a2acdc8662702a47420c2089a5a0f1423fd0e Mon Sep 17 00:00:00 2001 From: Ivan Evans <74743263+Pasithea0@users.noreply.github.com> Date: Fri, 27 Dec 2024 17:21:28 -0700 Subject: [PATCH] update retries --- src/components/player/display/base.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/player/display/base.ts b/src/components/player/display/base.ts index 1fb1dcba..4578f04a 100644 --- a/src/components/player/display/base.ts +++ b/src/components/player/display/base.ts @@ -154,12 +154,12 @@ export function makeVideoElementDisplayInterface(): DisplayInterface { maxLoadTimeMs: 30 * 1000, // allow it load extra long, fragments are slow if requested for the first time on an origin maxTimeToFirstByteMs: 30 * 1000, errorRetry: { - maxNumRetry: 2, + maxNumRetry: 6, retryDelayMs: 1000, maxRetryDelayMs: 8000, }, timeoutRetry: { - maxNumRetry: 3, + maxNumRetry: 6, maxRetryDelayMs: 0, retryDelayMs: 0, },