Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/apache-airflow/core-concepts/executor/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,17 @@ Some examples of valid multiple executor configuration:
.. code-block:: ini

[core]
executor = 'LocalExecutor'
executor = LocalExecutor

.. code-block:: ini

[core]
executor = 'LocalExecutor,CeleryExecutor'
executor = LocalExecutor,CeleryExecutor

.. code-block:: ini

[core]
executor = 'KubernetesExecutor,my.custom.module.ExecutorClass'
executor = KubernetesExecutor,my.custom.module.ExecutorClass


.. note::
Expand All @@ -154,7 +154,7 @@ To make it easier to specify executors on tasks and DAGs, executor configuration
.. code-block:: ini

[core]
executor = 'LocalExecutor,my.custom.module.ExecutorClass:ShortName'
executor = LocalExecutor,ShortName:my.custom.module.ExecutorClass

.. note::
If a DAG specifies a task to use an executor that is not configured, the DAG will fail to parse and a warning dialog will be shown in the Airflow UI. Please ensure that all executors you wish to use are specified in Airflow configuration on *any* host/container that is running an Airflow component (scheduler, workers, etc).
Expand Down
Loading