Use default shaka retry params to not delay the inevitable errors

This commit is contained in:
Travis Shivers 2020-08-03 21:19:15 -05:00
parent 23abb1c40d
commit 38e805ed23
No known key found for this signature in database
GPG Key ID: EE4CC2891B8FCD33
1 changed files with 0 additions and 18 deletions

View File

@ -193,24 +193,6 @@ export default {
// TODO: make this config // TODO: make this config
bufferingGoal: 120, bufferingGoal: 120,
jumpLargeGaps: true, jumpLargeGaps: true,
retryParameters: {
timeout: 0, // timeout in ms, after which we abort; 0 means never
maxAttempts: 10, // the maximum number of requests before we fail
baseDelay: 1000, // the base delay in ms between retries
backoffFactor: 2, // the multiplicative backoff factor between retries
fuzzFactor: 0.5, // the fuzz factor to apply to each retry delay
},
},
manifest: {
retryParameters: {
timeout: 0, // timeout in ms, after which we abort; 0 means never
maxAttempts: 10, // the maximum number of requests before we fail
baseDelay: 1000, // the base delay in ms between retries
backoffFactor: 2, // the multiplicative backoff factor between retries
fuzzFactor: 0.5, // the fuzz factor to apply to each retry delay
},
}, },
}, },