From c806553ea9a57c436f0ee8a8fba4b537f81e06fb Mon Sep 17 00:00:00 2001 From: Eric Lipe Date: Fri, 8 Dec 2023 14:33:21 -0700 Subject: [PATCH] - Fixing type issue --- tdrs-backend/tdpservice/settings/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrs-backend/tdpservice/settings/common.py b/tdrs-backend/tdpservice/settings/common.py index 88733be92..34d647166 100644 --- a/tdrs-backend/tdpservice/settings/common.py +++ b/tdrs-backend/tdpservice/settings/common.py @@ -472,6 +472,6 @@ class Common(Configuration): }, } KIBANA_BASE_URL = os.getenv('KIBANA_BASE_URL', 'http://localhost:5601') - BYPASS_KIBANA_AUTH = os.getenv("BYPASS_KIBANA_AUTH", 0) + BYPASS_KIBANA_AUTH = strtobool(os.getenv("BYPASS_KIBANA_AUTH", "no")) CYPRESS_TOKEN = os.getenv('CYPRESS_TOKEN', None)