web/task-manager/scheduler: proper error code

This commit is contained in:
wukko 2025-05-14 15:35:06 +06:00
parent 4a6f159e06
commit 50746be9bf
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -44,7 +44,7 @@ export const schedule = () => {
if (finalFile) {
itemDone(task.id, finalFile);
} else {
itemError(task.id, task.runningWorker, "no final file");
itemError(task.id, task.runningWorker, "queue.no_final_file");
}
continue;