[master] Tear down FS between cron jobs (#26223)
Because some cron jobs do not always properly clean up their FS usage and others might not clean up before setting up the FS, this could cause potential side effects. To make sure we exclude side effects, we tear down the FS between cron jobs. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
5fc4d45409
commit
49ba3c0bdc
2
cron.php
2
cron.php
|
@ -144,6 +144,8 @@ try {
|
|||
|
||||
$logger->debug('Run ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
|
||||
$job->execute($jobList, $logger);
|
||||
// clean up after unclean jobs
|
||||
\OC_Util::tearDownFS();
|
||||
$logger->debug('Finished ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
|
||||
|
||||
$jobList->setLastJob($job);
|
||||
|
|
Loading…
Reference in New Issue