From f92bf5dc2067cae2b533090f0c3a947d16fb4d50 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 2 Oct 2024 15:39:27 +0100 Subject: [PATCH] Updated language for failure Signed-off-by: snipe --- app/Http/Controllers/HealthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/HealthController.php b/app/Http/Controllers/HealthController.php index 2a2904e0fb..6b59d8a1d0 100644 --- a/app/Http/Controllers/HealthController.php +++ b/app/Http/Controllers/HealthController.php @@ -39,7 +39,7 @@ class HealthController extends BaseController } catch (\Exception $e) { \Log::error('Could not connect to database'); return response()->json([ - 'status' => 'Could not connect to database', + 'status' => 'database connection failed', ], 500); }