display warning if domaincheck container could not be started instead of bugging out

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-07-19 14:31:45 +02:00
parent 70b46093ab
commit 54d9181f14
4 changed files with 15 additions and 3 deletions

View file

@ -176,6 +176,6 @@ $app->get('/', function (\Psr\Http\Message\RequestInterface $request, Response $
}
});
$errorMiddleware = $app->addErrorMiddleware(true, true, true);
$errorMiddleware = $app->addErrorMiddleware(false, true, true);
$app->run();