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 maxLoadTimeMs: 30 * 1000, // allow it load extra long, fragments are slow if requested for the first time on an origin
maxTimeToFirstByteMs: 30 * 1000, maxTimeToFirstByteMs: 30 * 1000,
errorRetry: { errorRetry: {
maxNumRetry: 6, maxNumRetry: 10,
retryDelayMs: 3000, retryDelayMs: 1000,
maxRetryDelayMs: 8000, maxRetryDelayMs: 8000,
}, },
timeoutRetry: { timeoutRetry: {
maxNumRetry: 6, maxNumRetry: 10,
maxRetryDelayMs: 0, maxRetryDelayMs: 0,
retryDelayMs: 0, retryDelayMs: 0,
}, },