ashb commented on a change in pull request #11327:
URL: https://github.com/apache/airflow/pull/11327#discussion_r501314811
##########
File path: airflow/settings.py
##########
@@ -365,3 +365,11 @@ def initialize():
# to get all the logs from the print & log statements in the DAG files before
a task is run
# The handlers are restored after the task completes execution.
DONOT_MODIFY_HANDLERS = conf.getboolean('logging', 'donot_modify_handlers',
fallback=False)
+
+CAN_FORK = hasattr(os, "fork")
+
+EXECUTE_TASKS_NEW_PYTHON_INTERPRETER = CAN_FORK and conf.getboolean(
Review comment:
yup.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]