kaxil commented on a change in pull request #11327:
URL: https://github.com/apache/airflow/pull/11327#discussion_r501016972
##########
File path: airflow/config_templates/default_airflow.cfg
##########
@@ -133,6 +133,11 @@ load_default_connections = True
# Where your Airflow plugins are stored
plugins_folder = {AIRFLOW_HOME}/plugins
+# Should tasks be executed via forking of the parent process ("False",
+# the speedier option) or by spawning a new python process ("True" slow,
+# but means plugin changes picked up by tasks straight away)
+# Default: execute_tasks_new_python_interpreter = False
+
Review comment:
This looks a bit odd, why not just have it as:
```ini
execute_tasks_new_python_interpreter = False
```
?
----------------------------------------------------------------
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]