Add the background jobs after the table was updated
This commit is contained in:
parent
bd87f67473
commit
78da57466f
1 changed files with 7 additions and 2 deletions
|
@ -216,8 +216,6 @@ class Updater extends BasicEmitter {
|
|||
try {
|
||||
Setup::updateHtaccess();
|
||||
Setup::protectDataDirectory();
|
||||
// TODO: replace with the new repair step mechanism https://github.com/owncloud/core/pull/24378
|
||||
Setup::installBackgroundJobs();
|
||||
} catch (\Exception $e) {
|
||||
throw new \Exception($e->getMessage());
|
||||
}
|
||||
|
@ -243,6 +241,13 @@ class Updater extends BasicEmitter {
|
|||
if ($this->updateStepEnabled) {
|
||||
$this->doCoreUpgrade();
|
||||
|
||||
try {
|
||||
// TODO: replace with the new repair step mechanism https://github.com/owncloud/core/pull/24378
|
||||
Setup::installBackgroundJobs();
|
||||
} catch (\Exception $e) {
|
||||
throw new \Exception($e->getMessage());
|
||||
}
|
||||
|
||||
// update all shipped apps
|
||||
$disabledApps = $this->checkAppsRequirements();
|
||||
$this->doAppUpgrade();
|
||||
|
|
Loading…
Reference in a new issue