From c0cb126c3aa30f254241a2517ad2c94bf2d6a156 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 3ea1c952e47..cbe10b180af 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -219,7 +219,7 @@ def get_env_setting(setting): # 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.