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