Split the exception handling so install errors don't log as setup errors
More gebuging Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
3f70e74573
commit
65dcda3aa1
1 changed files with 11 additions and 3 deletions
|
@ -353,11 +353,9 @@ class Setup {
|
|||
|
||||
$this->config->setValues($newConfigValues);
|
||||
|
||||
try {
|
||||
$dbSetup->initialize($options);
|
||||
try {
|
||||
$dbSetup->setupDatabase($username);
|
||||
// apply necessary migrations
|
||||
$dbSetup->runMigrations();
|
||||
} catch (\OC\DatabaseSetupException $e) {
|
||||
$error[] = [
|
||||
'error' => $e->getMessage(),
|
||||
|
@ -371,6 +369,16 @@ class Setup {
|
|||
];
|
||||
return $error;
|
||||
}
|
||||
try {
|
||||
// apply necessary migrations
|
||||
$dbSetup->runMigrations();
|
||||
} catch (Exception $e) {
|
||||
$error[] = [
|
||||
'error' => 'Error while trying to initialise the database: ' . $e->getMessage(),
|
||||
'hint' => '',
|
||||
];
|
||||
return $error;
|
||||
}
|
||||
|
||||
//create the user and group
|
||||
$user = null;
|
||||
|
|
Loading…
Reference in a new issue