bumb retries for errors?

This commit is contained in:
Ivan Evans 2024-12-30 16:43:15 -07:00
parent 439c48bcaa
commit 66f98e360e

View file

@ -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,
},