mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 09:32:17 +00:00
bumb retries for errors?
This commit is contained in:
parent
439c48bcaa
commit
66f98e360e
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue