Do not create a loop that generates thousands of jobs

This commit is contained in:
Joas Schilling 2016-01-28 15:34:50 +01:00
parent 476720ada9
commit 5238fc3f54
1 changed files with 11 additions and 2 deletions

View File

@ -130,11 +130,20 @@ try {
// Work
$jobList = \OC::$server->getJobList();
$jobs = $jobList->getAll();
foreach ($jobs as $job) {
$executedJobs = [];
while ($job = $jobList->getNext()) {
if (isset($executedJobs[$job->getId()])) {
break;
}
$logger->debug('Run job with ID ' . $job->getId(), ['app' => 'cron']);
$job->execute($jobList, $logger);
$logger->debug('Finished job with ID ' . $job->getId(), ['app' => 'cron']);
$jobList->setLastJob($job);
$executedJobs[$job->getId()] = true;
unset($job);
}
// unlock the file