feng-tao closed pull request #4202: [AIRFLOW-XXX] Fix incorrect URL for Task
Tries and Task Duration
URL: https://github.com/apache/incubator-airflow/pull/4202
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/airflow/www/templates/airflow/list_dags.html
b/airflow/www/templates/airflow/list_dags.html
index c7f2497b94..047b579726 100644
--- a/airflow/www/templates/airflow/list_dags.html
+++ b/airflow/www/templates/airflow/list_dags.html
@@ -153,10 +153,10 @@ <h2>DAGs</h2>
<a href="{{ url_for("airflow.graph", dag_id=row.dag_id) }}"
title="Graph View">
<span class="glyphicon glyphicon-certificate"
aria-hidden="true"></span>
</a>
- <a href="{{ url_for("airflow.duration", dag_id=row.dag_id) }}"
title="Task Tries">
+ <a href="{{ url_for("airflow.tries", dag_id=row.dag_id) }}"
title="Task Tries">
<span class="glyphicon glyphicon-duplicate"
aria-hidden="true"></span>
</a>
- <a href="{{ url_for("airflow.tries", dag_id=row.dag_id) }}"
title="Tasks Duration">
+ <a href="{{ url_for("airflow.duration", dag_id=row.dag_id) }}"
title="Tasks Duration">
<span class="glyphicon glyphicon-stats"
aria-hidden="true"></span>
</a>
<a href="{{ url_for("airflow.landing_times", dag_id=row.dag_id)
}}" title="Landing Times">
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services