N°9678 - Datamodel not added after extension management setup (#936)

* N°9678 - Datamodel not added after extension management setup

* N°9678 - fix selecting extensions from extensions folder in extension mgt view

* cleanup: remove cached stuff in runtimeenv

* N°9678 - Refactor iTopExtensionsMap instantiation to use GetExtensionsMap method

* N°9678 - Refactor data model compilation and improve directory scanning logic

* N°9678 - Handle MySQLException in ModuleInstallationRepository and remove unnecessary error logging in WizStepModulesChoice

---------

Co-authored-by: Eric Espie <eric.espie@combodo.com>
This commit is contained in:
odain-cbd
2026-06-17 10:22:05 +02:00
committed by GitHub
parent 0240d12007
commit 207ac373d0
30 changed files with 620 additions and 188 deletions

View File

@@ -68,7 +68,12 @@ WHERE
parent_id='$iRootId'
OR id='$iRootId'
SQL;
return CMDBSource::QueryToArray($sSQL);
try {
return CMDBSource::QueryToArray($sSQL);
} catch (MySQLException $e) {
SetupLog::Exception(__METHOD__, $e);
throw $e;
}
}
private function GetTableWithPrefix(Config $oConfig)