Try to debug a CI issue
This commit is contained in:
parent
25691c9930
commit
518c5cc62d
1 changed files with 9 additions and 3 deletions
|
@ -78,9 +78,15 @@ describe('Fast restream in live', function () {
|
|||
const video = await server.videos.get({ id: liveId })
|
||||
expect(video.streamingPlaylists).to.have.lengthOf(1)
|
||||
|
||||
await server.live.getSegmentFile({ videoUUID: liveId, segment: 0, playlistNumber: 0 })
|
||||
await makeRawRequest({ url: video.streamingPlaylists[0].playlistUrl, expectedStatus: HttpStatusCode.OK_200 })
|
||||
await makeRawRequest({ url: video.streamingPlaylists[0].segmentsSha256Url, expectedStatus: HttpStatusCode.OK_200 })
|
||||
try {
|
||||
await server.live.getSegmentFile({ videoUUID: liveId, segment: 0, playlistNumber: 0 })
|
||||
await makeRawRequest({ url: video.streamingPlaylists[0].playlistUrl, expectedStatus: HttpStatusCode.OK_200 })
|
||||
await makeRawRequest({ url: video.streamingPlaylists[0].segmentsSha256Url, expectedStatus: HttpStatusCode.OK_200 })
|
||||
} catch (err) {
|
||||
// FIXME: try to debug error in CI "Unexpected end of JSON input"
|
||||
console.error(err)
|
||||
throw err
|
||||
}
|
||||
|
||||
await wait(100)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue