Line 55 in /home/bradc/public_html/vendor/symbiote/silverstripe-queuedjobs/src/Tasks/CheckJobHealthTask.php
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()