Remove deprecated transcoding job names
This commit is contained in:
parent
45570e9397
commit
e83d06a702
|
@ -28,21 +28,10 @@ import { JobQueue } from '../job-queue'
|
||||||
|
|
||||||
type HandlerFunction = (job: Bull.Job, payload: VideoTranscodingPayload, video: MVideoFullLight, user: MUser) => Promise<any>
|
type HandlerFunction = (job: Bull.Job, payload: VideoTranscodingPayload, video: MVideoFullLight, user: MUser) => Promise<any>
|
||||||
|
|
||||||
const handlers: { [ id: string ]: HandlerFunction } = {
|
const handlers: { [ id in VideoTranscodingPayload['type'] ]: HandlerFunction } = {
|
||||||
// Deprecated, introduced in 3.1
|
|
||||||
'hls': handleHLSJob,
|
|
||||||
'new-resolution-to-hls': handleHLSJob,
|
'new-resolution-to-hls': handleHLSJob,
|
||||||
|
|
||||||
// Deprecated, introduced in 3.1
|
|
||||||
'new-resolution': handleNewWebTorrentResolutionJob,
|
|
||||||
'new-resolution-to-webtorrent': handleNewWebTorrentResolutionJob,
|
'new-resolution-to-webtorrent': handleNewWebTorrentResolutionJob,
|
||||||
|
|
||||||
// Deprecated, introduced in 3.1
|
|
||||||
'merge-audio': handleWebTorrentMergeAudioJob,
|
|
||||||
'merge-audio-to-webtorrent': handleWebTorrentMergeAudioJob,
|
'merge-audio-to-webtorrent': handleWebTorrentMergeAudioJob,
|
||||||
|
|
||||||
// Deprecated, introduced in 3.1
|
|
||||||
'optimize': handleWebTorrentOptimizeJob,
|
|
||||||
'optimize-to-webtorrent': handleWebTorrentOptimizeJob
|
'optimize-to-webtorrent': handleWebTorrentOptimizeJob
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue