More detail

This commit is contained in:
Juan Pablo Vial
2025-06-27 17:42:09 -04:00
parent f34d7338f1
commit 352e33179c

View File

@ -47,6 +47,7 @@ class Queue extends Command
{
$this->logger->debug("Getting jobs");
$jobs = $this->jobService->getPending();
$this->logger->debug("Found " . count($jobs) . " jobs");
return array_column($jobs, 'id');
}
protected function runJobs(Console\Output\OutputInterface $output, array $jobs): int