Răsfoiți Sursa

Don't block when removing redundancy files

Chocobozzz 5 ani în urmă
părinte
comite
d0ae9490a3
1 a modificat fișierele cu 6 adăugiri și 2 ștergeri
  1. 6 2
      server/models/redundancy/video-redundancy.ts

+ 6 - 2
server/models/redundancy/video-redundancy.ts

@@ -122,9 +122,13 @@ export class VideoRedundancyModel extends Model<VideoRedundancyModel> {
 
     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) {