Don't block when removing redundancy files
This commit is contained in:
parent
25378bc866
commit
d0ae9490a3
|
@ -122,9 +122,13 @@ export class VideoRedundancyModel extends Model<VideoRedundancyModel> {
|
||||||
|
|
||||||
const videoFile = await VideoFileModel.loadWithVideo(instance.videoFileId)
|
const videoFile = await VideoFileModel.loadWithVideo(instance.videoFileId)
|
||||||
|
|
||||||
logger.info('Removing duplicated video file %s-%s.', videoFile.Video.uuid, videoFile.resolution)
|
const logIdentifier = `${videoFile.Video.uuid}-${videoFile.resolution}`
|
||||||
|
logger.info('Removing duplicated video file %s.', logIdentifier)
|
||||||
|
|
||||||
return videoFile.Video.removeFile(videoFile)
|
videoFile.Video.removeFile(videoFile)
|
||||||
|
.catch(err => logger.error('Cannot delete %s files.', logIdentifier, { err }))
|
||||||
|
|
||||||
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
static async loadLocalByFileId (videoFileId: number) {
|
static async loadLocalByFileId (videoFileId: number) {
|
||||||
|
|
Loading…
Reference in New Issue