-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting cookie_samesite to None in airflow.cfg throws an error #10781
Labels
Comments
Thanks for opening your first issue here! Be sure to follow the issue template! |
Merged
@potiuk i believe this issue is resolved |
Does this occur in 1.10.12 too, if so yeah I am happy to cherry-pick #11610 into v1-10-test and be released in 1.10.13 |
Closed
This has been fixed now. |
Is this only fixed in Airflow 2.0 onwards? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Apache Airflow version: 1.10.10
Kubernetes version (if you are using kubernetes) (use
kubectl version
): N/AEnvironment: Airflow v1.10.10, Python v3.6.11 on Ubuntu 16.04
uname -a
): 4.15.0-1092-azure Question about TaskInstance.is_queueable #102~16.04.1-Ubuntu SMP Tue Jul 14 20:28:23 UTC 2020 x86_64 x86_64 x86_64 GNU/LinuxWhat happened:
Setting
cookie_samesite
value toNone
inairflow.cfg
results in the following error:What you expected to happen:
Setting the value of
cookie_samesite
value toNone
inairflow.cfg
should be supported.How to reproduce it:
cookie_samesite
under thewebserver
section ofairflow.cfg
toNone
.Anything else we need to know:
The error occurs because the version of
werkzeug
supported by airflow does not set theSameSite
attribute of a cookie toNone
correctly. Version1.0.0
has the fix for this but in #7377 the version required by airflow was pinned to<1.0.0
.The text was updated successfully, but these errors were encountered: