This is an automated email from the ASF dual-hosted git repository.

dimberman pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new b3c356b  Fix identation in executor_config example (#10467)
b3c356b is described below

commit b3c356bdf05a391e0b8233c42763e227c9e54811
Author: Kaxil Naik <[email protected]>
AuthorDate: Sat Aug 22 09:19:33 2020 +0100

    Fix identation in executor_config example (#10467)
    
    (cherry picked from commit 264c466b467845bcca25081e91ed76222ae5e7fa)
---
 airflow/models/baseoperator.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow/models/baseoperator.py b/airflow/models/baseoperator.py
index 266ad64..1dcd628 100644
--- a/airflow/models/baseoperator.py
+++ b/airflow/models/baseoperator.py
@@ -228,9 +228,9 @@ class BaseOperator(LoggingMixin):
 
             MyOperator(...,
                 executor_config={
-                "KubernetesExecutor":
-                    {"image": "myCustomDockerImage"}
-                    }
+                    "KubernetesExecutor":
+                        {"image": "myCustomDockerImage"}
+                }
             )
 
     :type executor_config: dict

Reply via email to