Add an infinite retry config.

This commit is contained in:
Kavin 2023-11-23 23:49:34 +00:00
parent dd83474126
commit 32c234258b
No known key found for this signature in database
GPG Key ID: 6E4598CA5C92C41F

View File

@ -486,6 +486,11 @@ export default {
}, },
streaming: { streaming: {
segmentPrefetchLimit: 10, segmentPrefetchLimit: 10,
retryParameters: {
maxAttempts: Infinity,
baseDelay: 100,
backoffFactor: 1.5,
},
}, },
}); });