-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
fix: change disable_verify_ssl behaviour #25023
fix: change disable_verify_ssl behaviour #25023
Conversation
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contribution Guide (https://github.com/apache/airflow/blob/main/CONTRIBUTING.rst)
|
375c205
to
071ed26
Compare
hi @wselfjes can you please explain in more detail what the problem is and how your fix resolves it? may need a test too. |
hi @dstandish
We tried to play around with certificates but the problem stayed. Other services work fine. After some research I found that airflow 2.3.2 has following behaviour with
The result is that airflow config field does not apply. I propose a solution to change the order of
|
5890824
to
b952e91
Compare
The problem is that verify_ssl is overwritten by the configuration from the kube_config or load_incluster_config file.
15d0464
to
e27e44d
Compare
I don't understand why 2 tests are failing with aborting(maybe timeout): Tests / Python unit tests for helm chart (pull_request) & Tests / Sqlite Py3.7: API Always CLI Core Integration Other Providers WWW (pull_request). |
I've re-run them - likely an intermittent failure. |
The test failed again( |
I re-run it again, but maybe it's a sign that the change cause the tests to fail (they apparently aborted) and they need fixing. |
Finally |
Awesome work, congrats on your first merged pull request! |
The problem is that verify_ssl is overwritten by the configuration from the kube_config or load_incluster_config file. (cherry picked from commit 2071519)
The problem is that verify_ssl is overwritten by the
configuration from the kube_config or load_incluster_config file.