From a9ff570a53da266cdee9b945bce875e3f0bcfb23 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 6 Jun 2025 11:29:37 -0700 Subject: [PATCH] fix api health --- app/utils/api_health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/api_health.py b/app/utils/api_health.py index 87ddcc99c..d53b72f9a 100644 --- a/app/utils/api_health.py +++ b/app/utils/api_health.py @@ -18,7 +18,7 @@ def get_no_x509_strict_context(): def is_api_down(): api_base_url = os.getenv("API_HOST_NAME") try: - response = requests.get(api_base_url, timeout=2, verify=False) + response = requests.get(api_base_url, timeout=2, verify=False) # nosec is_down = response.status_code != 200 if is_down: logger.warning(