Increase request retry interval

CI seems to have a slow disk?
pull/5817/head
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
1 changed files with 3 additions and 3 deletions

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)