This is an automated email from the ASF dual-hosted git repository. ash pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit ecd3e3c79bf8ef5ed86bd8ce1a79a2ce71a29c0e 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. (cherry picked from commit d2c2a2285c176ef232452e72a28e355667b8b50b) --- airflow/www/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www/views.py b/airflow/www/views.py index fbee413..ab31607 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 = [
