Skip to content

Commit

Permalink
- Fixing type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
elipe17 committed Dec 8, 2023
1 parent 15d4019 commit c806553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdrs-backend/tdpservice/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit c806553

Please sign in to comment.