This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 58e262fcb57 Change default executor to LocalExecutor (#48092)
58e262fcb57 is described below
commit 58e262fcb57a1c456faeda71612cbc1bf7442810
Author: Amogh Desai <[email protected]>
AuthorDate: Sun Mar 23 02:06:20 2025 +0530
Change default executor to LocalExecutor (#48092)
---
airflow-core/src/airflow/config_templates/config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/config_templates/config.yml
b/airflow-core/src/airflow/config_templates/config.yml
index 569c24adb2d..37fd5d00714 100644
--- a/airflow-core/src/airflow/config_templates/config.yml
+++ b/airflow-core/src/airflow/config_templates/config.yml
@@ -75,7 +75,7 @@ core:
version_added: ~
type: string
example: ~
- default: "SequentialExecutor"
+ default: "LocalExecutor"
auth_manager:
description: |
The auth manager class that airflow should use. Full import path to
the auth manager class.