1
0
Fork 0
peertube/server/lib/job-queue/handlers/video-redundancy.ts

18 lines
607 B
TypeScript
Raw Normal View History

2020-01-10 09:11:28 +00:00
import * as Bull from 'bull'
import { logger } from '../../../helpers/logger'
import { VideosRedundancyScheduler } from '@server/lib/schedulers/videos-redundancy-scheduler'
2020-04-23 07:32:53 +00:00
import { VideoRedundancyPayload } from '@shared/models'
2020-01-10 09:11:28 +00:00
async function processVideoRedundancy (job: Bull.Job) {
const payload = job.data as VideoRedundancyPayload
logger.info('Processing video redundancy in job %d.', job.id)
return VideosRedundancyScheduler.Instance.createManualRedundancy(payload.videoId)
}
// ---------------------------------------------------------------------------
export {
processVideoRedundancy
}