From 66f98e360e31c4c2be7fb0ec806a13ad917a2c97 Mon Sep 17 00:00:00 2001 From: Ivan Evans <74743263+Pasithea0@users.noreply.github.com> Date: Mon, 30 Dec 2024 16:43:15 -0700 Subject: [PATCH] bumb retries for errors? --- src/components/player/display/base.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/player/display/base.ts b/src/components/player/display/base.ts index 058d2722..506928ad 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: 6, - retryDelayMs: 3000, + maxNumRetry: 10, + retryDelayMs: 1000, maxRetryDelayMs: 8000, }, timeoutRetry: { - maxNumRetry: 6, + maxNumRetry: 10, maxRetryDelayMs: 0, retryDelayMs: 0, },