Reputation: 1
Questions:
Any help or insights would be greatly appreciated!
I'm trying to embed an Apache Superset dashboard inside an iframe, but the browser enforces SameSite=Lax for the session cookie, even though my superset_config.py explicitly sets:
SESSION_COOKIE_SAMESITE = "None"
SESSION_COOKIE_SECURE = True
When I check the running container, the configuration appears correctly inside the superset_config.py file. However, inspecting cookies in the browser shows:
Set-Cookie: session=xxxx; Path=/; Secure; HttpOnly; SameSite=Lax
What I've Tried:
docker exec -it <superset_container_id> cat /app/pythonpath/superset_config.py
Restarted Superset
Cleared browser cookies and cache. Tested with multiple browsers.
Questions:
Any help or insights would be greatly appreciated!
Upvotes: 0
Views: 19