From 5bb79bb7ca05d4660a5f21c704cb58c0e1668b37 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Tue, 26 Nov 2024 09:23:30 -0400 Subject: [PATCH] ci: fix comment in settings_local.py --- k8s/settings_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/settings_local.py b/k8s/settings_local.py index 33ac4f1e38..a63a02e536 100644 --- a/k8s/settings_local.py +++ b/k8s/settings_local.py @@ -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)