This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 bd9d5a5a90a Fix typo in executor docs (#48575)
bd9d5a5a90a is described below
commit bd9d5a5a90a403d3dbb427a66628395a563dd268
Author: Adrian Perea <[email protected]>
AuthorDate: Tue Apr 1 00:17:14 2025 +0800
Fix typo in executor docs (#48575)
---
airflow-core/docs/core-concepts/executor/index.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/docs/core-concepts/executor/index.rst
b/airflow-core/docs/core-concepts/executor/index.rst
index 821ec2f391f..683e6116965 100644
--- a/airflow-core/docs/core-concepts/executor/index.rst
+++ b/airflow-core/docs/core-concepts/executor/index.rst
@@ -110,7 +110,7 @@ Airflow tasks are executed ad hoc inside containers/pods.
Each task is isolated
.. note::
- New Airflow users may assume they need to run a separate executor process
using one of the Local or Remote Executors. This is not correct. The executor
logic runs *inside* the scheduler process, and will run the tasks locally or
not depending the executor selected.
+ New Airflow users may assume they need to run a separate executor process
using one of the Local or Remote Executors. This is not correct. The executor
logic runs *inside* the scheduler process, and will run the tasks locally or
not depending on the executor selected.
Using Multiple Executors Concurrently
-------------------------------------