End runner live transcoding on update error

pull/5817/head
Chocobozzz 2023-05-22 15:24:19 +02:00
parent 6a9b315182
commit fa3da7a623
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 5 additions and 2 deletions

View File

@ -248,6 +248,8 @@ export class ProcessLiveRTMPHLSTranscoding {
private async sendPendingChunks (): Promise<any> {
if (this.ended) return Promise.resolve()
const promises: Promise<any>[] = []
for (const playlist of this.pendingChunksPerPlaylist.keys()) {
for (const chunk of this.pendingChunksPerPlaylist.get(playlist)) {
logger.debug(`Sending added live chunk ${chunk} update`)
@ -271,12 +273,13 @@ export class ProcessLiveRTMPHLSTranscoding {
}
}
this.updateWithRetry(payload)
.catch(err => logger.error({ err }, 'Cannot update with retry'))
promises.push(this.updateWithRetry(payload))
}
this.pendingChunksPerPlaylist.set(playlist, [])
}
await Promise.all(promises)
}
private async updateWithRetry (payload: LiveRTMPHLSTranscodingUpdatePayload, currentTry = 1): Promise<any> {