aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-05-10 16:23:55 +0200
committerChocobozzz <me@florianbigard.com>2023-05-10 16:23:55 +0200
commitc106db14136f1701a8b1eab8d7152395225e55e4 (patch)
tree7a44b5e62bfbf572195a568128334c05adc9480d /shared
parentc17a55fbca5f1cbe0fbf7aac6b862eb47d01cb4f (diff)
downloadPeerTube-c106db14136f1701a8b1eab8d7152395225e55e4.tar.gz
PeerTube-c106db14136f1701a8b1eab8d7152395225e55e4.tar.zst
PeerTube-c106db14136f1701a8b1eab8d7152395225e55e4.zip
Fix tests
Diffstat (limited to 'shared')
-rw-r--r--shared/server-commands/videos/streaming-playlists-command.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/server-commands/videos/streaming-playlists-command.ts b/shared/server-commands/videos/streaming-playlists-command.ts
index e7448aa69..f4bdb34ed 100644
--- a/shared/server-commands/videos/streaming-playlists-command.ts
+++ b/shared/server-commands/videos/streaming-playlists-command.ts
@@ -33,7 +33,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
33 } catch (err) { 33 } catch (err) {
34 if (!withRetry || currentRetry > 5) throw err 34 if (!withRetry || currentRetry > 5) throw err
35 35
36 await wait(100) 36 await wait(250)
37 37
38 return this.get({ 38 return this.get({
39 ...options, 39 ...options,
@@ -68,7 +68,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
68 } catch (err) { 68 } catch (err) {
69 if (!withRetry || currentRetry > 5) throw err 69 if (!withRetry || currentRetry > 5) throw err
70 70
71 await wait(100) 71 await wait(250)
72 72
73 return this.getFragmentedSegment({ 73 return this.getFragmentedSegment({
74 ...options, 74 ...options,
@@ -101,7 +101,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
101 } catch (err) { 101 } catch (err) {
102 if (!withRetry || currentRetry > 5) throw err 102 if (!withRetry || currentRetry > 5) throw err
103 103
104 await wait(100) 104 await wait(250)
105 105
106 return this.getSegmentSha256({ 106 return this.getSegmentSha256({
107 ...options, 107 ...options,