dimon222 edited a comment on issue #8212: URL: https://github.com/apache/airflow/issues/8212#issuecomment-914353201
If anyone pops on this issue, I wanted to mention that as of 2.1.3 the issue is still present, and solution that still works is prepending this: ```python from gevent import monkey; monkey.patch_ssl() ``` to very top line of file `airflow/config_templates/airflow_local_settings.py` (or your respective actual file if you have made one) of Airflow Scheduler component. Make sure to not touch any other airflow components in your cluster like Airflow Worker or Airflow Webserver (so if you have single node setup, this may not work for you), as those are not going to behave correctly with monkeypatches for SSL. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
