Skip to content
Snippets Groups Projects
Commit 554b0bd7 authored by Alexander Opitz's avatar Alexander Opitz Committed by Stefan Bürk
Browse files

[BUGFIX] DatabaseUpdatedPrerequisite returns correct ensure-state

The `ensure` method must return true,
if all operations were successful.

This is the case if all database
operations succeeded without returning
an error message.

The error messages are now checked
correctly and the corresponding state
is returned.

Resolves: #100428
Releases: main, 12.4, 11.5
Change-Id: I95911b065f8796d1eedf73438efde82ba01a07db
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/79354


Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarcore-ci <typo3@b13.com>
parent 6d77218b
Branches
Tags
......@@ -47,12 +47,16 @@ class DatabaseUpdatedPrerequisite implements PrerequisiteInterface, ChattyInterf
public function ensure(): bool
{
$adds = $this->databaseUpgradeWizardsService->getBlockingDatabaseAdds();
$result = null;
if (count($adds) > 0) {
$this->output->writeln('Performing ' . count($adds) . ' database operations.');
$result = $this->databaseUpgradeWizardsService->addMissingTablesAndFields();
// Nothing to add, early return
if ($adds === []) {
return true;
}
return $result === null;
$this->output->writeln('Performing ' . count($adds) . ' database operations.');
// remove potentially empty error messages
$errorMessages = array_filter($this->databaseUpgradeWizardsService->addMissingTablesAndFields());
return $errorMessages === [];
}
public function isFulfilled(): bool
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment