You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/09/07 14:27:40 UTC

[GitHub] [airflow] dimon222 commented on issue #8212: Can't read S3 remote logs when using gevent/eventlent webserver workers.

dimon222 commented 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 of 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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org