From b734fbd3ad759bff6f4a412a24298619c8f84ac8 Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Wed, 29 Mar 2023 11:23:26 +0100 Subject: [PATCH] feat(chalice): changed health-check response --- ee/api/chalicelib/core/health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/api/chalicelib/core/health.py b/ee/api/chalicelib/core/health.py index 4d75deb7c..1a84a9715 100644 --- a/ee/api/chalicelib/core/health.py +++ b/ee/api/chalicelib/core/health.py @@ -95,7 +95,7 @@ def __check_be_service(service_name): # fail_response["details"]["errors"].append(results.text) except: print("couldn't get response") - fail_response["details"]["errors"].append(str(e)) + # fail_response["details"]["errors"].append(str(e)) return fail_response return { "health": True,