More robust transcoding checker
This commit is contained in:
parent
c47c3bcb0a
commit
f6f48301a9
|
@ -37,7 +37,7 @@ const createTranscodingValidator = [
|
||||||
|
|
||||||
// Prefer using job info table instead of video state because before 4.0 failed transcoded video were stuck in "TO_TRANSCODE" state
|
// Prefer using job info table instead of video state because before 4.0 failed transcoded video were stuck in "TO_TRANSCODE" state
|
||||||
const info = await VideoJobInfoModel.load(video.id)
|
const info = await VideoJobInfoModel.load(video.id)
|
||||||
if (info && info.pendingTranscode !== 0) {
|
if (info && info.pendingTranscode > 0) {
|
||||||
return res.fail({
|
return res.fail({
|
||||||
status: HttpStatusCode.CONFLICT_409,
|
status: HttpStatusCode.CONFLICT_409,
|
||||||
message: 'This video is already being transcoded'
|
message: 'This video is already being transcoded'
|
||||||
|
|
Loading…
Reference in New Issue