1
0
Fork 0

Increase request retry interval

CI seems to have a slow disk?
This commit is contained in:
Chocobozzz 2023-05-15 11:44:33 +02:00
parent 339d3fba83
commit a63943feae
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -31,7 +31,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
return result
} catch (err) {
if (!withRetry || currentRetry > 5) throw err
if (!withRetry || currentRetry > 10) throw err
await wait(250)
@ -66,7 +66,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
return result
} catch (err) {
if (!withRetry || currentRetry > 5) throw err
if (!withRetry || currentRetry > 10) throw err
await wait(250)
@ -99,7 +99,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
return result
} catch (err) {
if (!withRetry || currentRetry > 5) throw err
if (!withRetry || currentRetry > 10) throw err
await wait(250)