Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed color of extra tasks to a readable color #38969

Merged
merged 1 commit into from
Apr 12, 2024
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
4 changes: 2 additions & 2 deletions airflow/sensors/external_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__(
Expand Down Expand Up @@ -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
Expand Down