feat: added comment about rethrowing PDO exception

This commit is contained in:
Christy Jacob 2022-03-19 02:57:50 +04:00
parent 1aa0be51bd
commit 137ec1631b

View file

@ -321,6 +321,7 @@ App::error(function ($error, $utopia, $request, $response, $layout, $project, $l
$version = App::getEnv('_APP_VERSION', 'UNKNOWN');
$route = $utopia->match($request);
/** Rethrow PDO exceptions so the database connection can be returned to the pool correctly */
if ($error instanceof PDOException) {
throw $error;
}