Skip to content

Commit

Permalink
ci: fix comment in settings_local.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Nov 26, 2024
1 parent 4b57602 commit 5bb79bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s/settings_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _multiline_to_list(s):
# Set DEBUG if DATATRACKER_DEBUG env var is the word "true"
DEBUG = os.environ.get("DATATRACKER_DEBUG", "false").lower() == "true"

# DATATRACKER_ALLOWED_HOSTS env var is a comma-separated list of allowed hosts
# DATATRACKER_ALLOWED_HOSTS env var is a newline-separated list of allowed hosts
_allowed_hosts_str = os.environ.get("DATATRACKER_ALLOWED_HOSTS", None)
if _allowed_hosts_str is not None:
ALLOWED_HOSTS = _multiline_to_list(_allowed_hosts_str)
Expand Down

0 comments on commit 5bb79bb

Please sign in to comment.