Skip to content

Commit

Permalink
fix: SHARED_kCOOKIE_DOMAIN -> SHARED_COOKIE_DOMAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmccormick committed Jan 17, 2025
1 parent d9621ba commit c0cb126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lms/envs/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c0cb126

Please sign in to comment.