Jobs not being updated

This commit is contained in:
Juan Pablo Vial
2025-05-13 16:06:09 -04:00
parent d536342425
commit 024a6eae54
2 changed files with 20 additions and 1 deletions

View File

@ -59,6 +59,10 @@ class Queue extends Ideal\Service
try {
if (!$worker->execute($job)) {
$errors []= $job->id;
} else {
if (!$this->jobService->execute($job)) {
$errors []= $job->id;
}
}
} catch (Exception $exception) {
$final = new Exception("Could not run job", 0, $exception);