Skip to content
Snippets Groups Projects

Sketch in the normalizer

1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -423,12 +423,14 @@ final class InstallerController extends ControllerBase {
@@ -423,12 +423,14 @@ final class InstallerController extends ControllerBase {
$this->installState->setState($project_id, 'installed');
$this->installState->setState($project_id, 'installed');
}
}
catch (\Throwable $e) {
catch (\Throwable $e) {
 
$message = $e->getMessage();
$response->addCommand(new MessageCommand(
$response->addCommand(new MessageCommand(
$e->getMessage(),
$message,
options: [
options: [
'type' => MessengerInterface::TYPE_ERROR,
'type' => MessengerInterface::TYPE_ERROR,
],
],
));
));
 
$this->logger->error($message);
}
}
}
}
$this->installState->deleteAll();
$this->installState->deleteAll();
Loading