diff options
-rw-r--r-- | core/Command/Background/Job.php | 3 | ||||
-rw-r--r-- | cron.php | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/core/Command/Background/Job.php b/core/Command/Background/Job.php index 0c64a05e2a7..66cb0ff5cf0 100644 --- a/core/Command/Background/Job.php +++ b/core/Command/Background/Job.php @@ -84,7 +84,8 @@ class Job extends Command { $output->writeln('<error>Something went wrong when trying to retrieve Job with ID ' . $jobId . ' from database</error>'); return 1; } - $job->start($this->jobList); + /** Calling execute until it is removed, then will switch to start */ + $job->execute($this->jobList); $job = $this->jobList->getById($jobId); if (($job === null) || ($lastRun !== $job->getLastRun())) { @@ -172,7 +172,8 @@ try { $memoryBefore = memory_get_usage(); $memoryPeakBefore = memory_get_peak_usage(); - $job->start($jobList); + /** Calling execute until it is removed, then will switch to start */ + $job->execute($jobList); $memoryAfter = memory_get_usage(); $memoryPeakAfter = memory_get_peak_usage(); @@ -207,7 +208,8 @@ try { $job = $jobList->getNext(); if ($job != null) { $logger->debug('WebCron call has selected job with ID ' . strval($job->getId()), ['app' => 'cron']); - $job->start($jobList); + /** Calling execute until it is removed, then will switch to start */ + $job->execute($jobList); $jobList->setLastJob($job); } OC_JSON::success(); |