diff options
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/runners/jobs.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/controllers/api/runners/jobs.ts b/server/controllers/api/runners/jobs.ts index bdeb0c6cd..140f062be 100644 --- a/server/controllers/api/runners/jobs.ts +++ b/server/controllers/api/runners/jobs.ts | |||
@@ -42,6 +42,7 @@ import { | |||
42 | RunnerJobType, | 42 | RunnerJobType, |
43 | RunnerJobUpdateBody, | 43 | RunnerJobUpdateBody, |
44 | RunnerJobUpdatePayload, | 44 | RunnerJobUpdatePayload, |
45 | ServerErrorCode, | ||
45 | UserRight, | 46 | UserRight, |
46 | VideoStudioTranscodingSuccess, | 47 | VideoStudioTranscodingSuccess, |
47 | VODAudioMergeTranscodingSuccess, | 48 | VODAudioMergeTranscodingSuccess, |
@@ -168,6 +169,7 @@ async function acceptRunnerJob (req: express.Request, res: express.Response) { | |||
168 | 169 | ||
169 | if (runnerJob.state !== RunnerJobState.PENDING) { | 170 | if (runnerJob.state !== RunnerJobState.PENDING) { |
170 | res.fail({ | 171 | res.fail({ |
172 | type: ServerErrorCode.RUNNER_JOB_NOT_IN_PENDING_STATE, | ||
171 | message: 'This job is not in pending state anymore', | 173 | message: 'This job is not in pending state anymore', |
172 | status: HttpStatusCode.CONFLICT_409 | 174 | status: HttpStatusCode.CONFLICT_409 |
173 | }) | 175 | }) |