Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Fix a typo for REDASH_FEATURE_POLICY env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Jun 20, 2023
1 parent d2ac245 commit 64f7300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
# an empty value.
# See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy
# for more information.
FEATURE_POLICY = os.environ.get("REDASH_REFERRER_POLICY", "")
FEATURE_POLICY = os.environ.get("REDASH_FEATURE_POLICY", "")

MULTI_ORG = parse_boolean(os.environ.get("REDASH_MULTI_ORG", "false"))

Expand Down

0 comments on commit 64f7300

Please sign in to comment.