This is an automated email from the ASF dual-hosted git repository.
xddeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new d2c2a22 Webserver: Allow Filtering TaskInstances by queued_dttm
(#14708)
d2c2a22 is described below
commit d2c2a2285c176ef232452e72a28e355667b8b50b
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Mar 12 08:17:49 2021 +0000
Webserver: Allow Filtering TaskInstances by queued_dttm (#14708)
We allow filtering TaskInstance in the Webserver by queued_dttm
similar to start_date and end_date.
This helps in debugging issues quicker, then getting access to DB.
---
airflow/www/views.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow/www/views.py b/airflow/www/views.py
index b888415..6774922 100644
--- a/airflow/www/views.py
+++ b/airflow/www/views.py
@@ -3572,6 +3572,7 @@ class TaskInstanceModelView(AirflowModelView):
'operator',
'start_date',
'end_date',
+ 'queued_dttm',
]
edit_columns = [