This is an automated email from the ASF dual-hosted git repository.
jscheffl 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 8fad98d34d (external_task.py): changed the background color of
external task in graph (#38969)
8fad98d34d is described below
commit 8fad98d34d6493483e934cd76eb82ea97bb58fd1
Author: Idan Tepper <[email protected]>
AuthorDate: Fri Apr 12 21:50:47 2024 +0300
(external_task.py): changed the background color of external task in graph
(#38969)
Co-authored-by: [email protected] <[email protected]>
---
airflow/sensors/external_task.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow/sensors/external_task.py b/airflow/sensors/external_task.py
index 32f5992001..08dab8ee7b 100644
--- a/airflow/sensors/external_task.py
+++ b/airflow/sensors/external_task.py
@@ -148,7 +148,7 @@ class ExternalTaskSensor(BaseSensorOperator):
"""
template_fields = ["external_dag_id", "external_task_id",
"external_task_ids", "external_task_group_id"]
- ui_color = "#19647e"
+ ui_color = "#4db7db"
operator_extra_links = [ExternalDagLink()]
def __init__(
@@ -473,7 +473,7 @@ class ExternalTaskMarker(EmptyOperator):
"""
template_fields = ["external_dag_id", "external_task_id", "execution_date"]
- ui_color = "#19647e"
+ ui_color = "#4db7db"
operator_extra_links = [ExternalDagLink()]
# The _serialized_fields are lazily loaded when get_serialized_fields()
method is called