From 4449f43c4e63c2b8fa22d0e6a6583b71354f7d06 Mon Sep 17 00:00:00 2001 From: "Kyle D. McCormick" Date: Fri, 17 Jan 2025 14:40:02 -0500 Subject: [PATCH] fix: SHARED_kCOOKIE_DOMAIN -> SHARED_COOKIE_DOMAIN --- lms/envs/production.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/envs/production.py b/lms/envs/production.py index 3ea1c952e4..cbe10b180a 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -219,7 +219,7 @@ ALLOWED_HOSTS = [ # This is the domain that is used to set shared cookies between various sub-domains. # By default, it's set to the same thing as the SESSION_COOKIE_DOMAIN, but we want to make it overrideable. -SHARED_COOKIE_DOMAIN = _YAML_TOKENS.get('SHARED_kCOOKIE_DOMAIN', SESSION_COOKIE_DOMAIN) +SHARED_COOKIE_DOMAIN = _YAML_TOKENS.get('SHARED_COOKIE_DOMAIN', SESSION_COOKIE_DOMAIN) # Cache used for location mapping -- called many times with the same key/value # in a given request.