Running Task Symbiote\QueuedJobs\Tasks\CheckJobHealthTask

Detected and attempted restart on 1 stalled jobsDetected and attempted restart on 0 broken jobsGET /dev/tasks/CheckJobHealthTask

[Emergency] Uncaught Exception: 1 jobs are unhealthy

GET /dev/tasks/CheckJobHealthTask

Line 55 in /home/bradc/public_html/vendor/symbiote/silverstripe-queuedjobs/src/Tasks/CheckJobHealthTask.php

Source

46         $unhealthyJobCount = 0;
47 
48         foreach ($jobHealth as $type => $IDs) {
49             $count = count($IDs ?? []);
50             echo 'Detected and attempted restart on ' . $count . ' ' . $type . ' jobs';
51             $unhealthyJobCount = $unhealthyJobCount + $count;
52         }
53 
54         if ($unhealthyJobCount > 0) {
55             throw new Exception("$unhealthyJobCount jobs are unhealthy");
56         }
57 
58         echo 'All jobs are healthy';
59     }
60 
61     protected function getService()

Trace