From e4755c624f173e357429fb606ec05734f663affe Mon Sep 17 00:00:00 2001 From: shimon Date: Mon, 1 Dec 2025 11:45:01 +0200 Subject: [PATCH] debug --- app/controllers/api/health.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/api/health.php b/app/controllers/api/health.php index d573d230b8..81f7eee02d 100644 --- a/app/controllers/api/health.php +++ b/app/controllers/api/health.php @@ -126,14 +126,14 @@ App::get('/v1/health/db') $failures[] = $database; } } catch (\Throwable) { - var_dump($key . " ($database)",); + var_dump($key . " ($database)"); $failures[] = $database; } } } if (!empty($failures)) { - + var_dump($failures); throw new Exception(Exception::GENERAL_SERVER_ERROR, 'DB failure on: ' . implode(", ", $failures)); }