Skip to content

Commit

Permalink
fix(security): restore default value of SESSION_COOKIE_SECURE to False (
Browse files Browse the repository at this point in the history
  • Loading branch information
sfirke committed Nov 21, 2023
1 parent 6a48803 commit 5ca7075
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions superset/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1442,6 +1442,7 @@ def EMAIL_HEADER_MUTATOR( # pylint: disable=invalid-name,unused-argument
},
"content_security_policy_nonce_in": ["script-src"],
"force_https": False,
"session_cookie_secure": False,
}
# React requires `eval` to work correctly in dev mode
TALISMAN_DEV_CONFIG = {
Expand All @@ -1463,6 +1464,7 @@ def EMAIL_HEADER_MUTATOR( # pylint: disable=invalid-name,unused-argument
},
"content_security_policy_nonce_in": ["script-src"],
"force_https": False,
"session_cookie_secure": False,
}

#
Expand Down

0 comments on commit 5ca7075

Please sign in to comment.