Fix Update::run()
This commit is contained in:
parent
b2e14f209b
commit
5b2e02889e
1 changed files with 14 additions and 4 deletions
|
@ -162,11 +162,21 @@ class Update
|
||||||
|
|
||||||
// Checks if the build changed during Lock acquiring (so no double update occurs)
|
// Checks if the build changed during Lock acquiring (so no double update occurs)
|
||||||
$retryBuild = DI::config()->get('system', 'build');
|
$retryBuild = DI::config()->get('system', 'build');
|
||||||
if ($retryBuild !== $build) {
|
if ($retryBuild != $build) {
|
||||||
Logger::notice('Update already done.', ['from' => $stored, 'to' => $current]);
|
// legacy option - check if there's something in the Config table
|
||||||
|
if (DBStructure::existsTable('config')) {
|
||||||
|
$dbConfig = DBA::selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'build']);
|
||||||
|
if (!empty($dbConfig)) {
|
||||||
|
$retryBuild = intval($dbConfig['v']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($retryBuild != $build) {
|
||||||
|
Logger::notice('Update already done.', ['from' => $build, 'retry' => $retryBuild, 'to' => $current]);
|
||||||
DI::lock()->release('dbupdate');
|
DI::lock()->release('dbupdate');
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DI::config()->set('system', 'maintenance', 1);
|
DI::config()->set('system', 'maintenance', 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue