You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/01/14 08:48:53 UTC

[airflow] branch main updated (a20d577 -> 2b4bf7f)

This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from a20d577  Fixing flaky task that fails in first check ocasionally (#19132)
     add 2b4bf7f  Use `DagRun.run_id` instead of `execution_date` when updating state of TIs(UI & REST API) (#18724)

No new revisions were added by this update.

Summary of changes:
 airflow/api/common/experimental/mark_tasks.py      | 437 +--------------------
 .../api/common/{experimental => }/mark_tasks.py    | 210 +++++++---
 .../api_connexion/endpoints/dag_run_endpoint.py    |   9 +-
 .../endpoints/task_instance_endpoint.py            |  25 +-
 airflow/api_connexion/openapi/v1.yaml              |   9 +-
 .../api_connexion/schemas/task_instance_schema.py  |  10 +-
 airflow/models/dag.py                              |  32 +-
 airflow/models/dagrun.py                           |  15 +-
 airflow/www/static/js/dag.js                       |  28 +-
 airflow/www/static/js/gantt.js                     |   2 +-
 airflow/www/static/js/graph.js                     |   5 +-
 airflow/www/static/js/tree/StatusBox.jsx           |   4 +-
 airflow/www/templates/airflow/dag.html             |   6 +-
 airflow/www/templates/airflow/graph.html           |   1 +
 airflow/www/views.py                               |  80 ++--
 tests/api/common/experimental/test_mark_tasks.py   |  48 +--
 .../common/{experimental => }/test_mark_tasks.py   | 103 ++---
 .../endpoints/test_task_instance_endpoint.py       | 126 +++++-
 .../schemas/test_task_instance_schema.py           |   1 +
 tests/conftest.py                                  |   2 +-
 tests/models/test_dag.py                           |  16 +-
 tests/models/test_dagrun.py                        |   4 +
 tests/www/views/test_views.py                      |   4 +-
 tests/www/views/test_views_acl.py                  |   4 +-
 tests/www/views/test_views_tasks.py                |  19 +-
 25 files changed, 549 insertions(+), 651 deletions(-)
 copy airflow/api/common/{experimental => }/mark_tasks.py (69%)
 copy tests/api/common/{experimental => }/test_mark_tasks.py (86%)