You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
619 B
TypeScript
18 lines
619 B
TypeScript
import { Job } from 'bullmq'
|
|||
import { VideosRedundancyScheduler } from '@server/lib/schedulers/videos-redundancy-scheduler.js'
|
|||
import { VideoRedundancyPayload } from '@peertube/peertube-models'
|
|||
import { logger } from '../../../helpers/logger.js'
|
|||
|
|||
async function processVideoRedundancy (job: Job) {
|
|||
const payload = job.data as VideoRedundancyPayload
|
|||
logger.info('Processing video redundancy in job %s.', job.id)
|
|||
|
|||
return VideosRedundancyScheduler.Instance.createManualRedundancy(payload.videoId)
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
processVideoRedundancy
|
|||
}
|