This is an automated email from the ASF dual-hosted git repository.
sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new bba7763825 fix(security): restore default value of
SESSION_COOKIE_SECURE to False (#26005)
bba7763825 is described below
commit bba7763825013689a4f4b4985b54d8802e61eef6
Author: Sam Firke <[email protected]>
AuthorDate: Tue Nov 21 09:10:56 2023 -0500
fix(security): restore default value of SESSION_COOKIE_SECURE to False
(#26005)
---
superset/config.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/superset/config.py b/superset/config.py
index 401dfd2f3d..98f87e6f02 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -1442,6 +1442,7 @@ TALISMAN_CONFIG = {
},
"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 = {
@@ -1463,6 +1464,7 @@ TALISMAN_DEV_CONFIG = {
},
"content_security_policy_nonce_in": ["script-src"],
"force_https": False,
+ "session_cookie_secure": False,
}
#