From c106db14136f1701a8b1eab8d7152395225e55e4 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 10 May 2023 16:23:55 +0200 Subject: Fix tests --- shared/server-commands/videos/streaming-playlists-command.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shared') 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 { } catch (err) { if (!withRetry || currentRetry > 5) throw err - await wait(100) + await wait(250) return this.get({ ...options, @@ -68,7 +68,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand { } catch (err) { if (!withRetry || currentRetry > 5) throw err - await wait(100) + await wait(250) return this.getFragmentedSegment({ ...options, @@ -101,7 +101,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand { } catch (err) { if (!withRetry || currentRetry > 5) throw err - await wait(100) + await wait(250) return this.getSegmentSha256({ ...options, -- cgit v1.2.3