You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/10/13 10:59:34 UTC

[airflow] branch master updated (623d5cd -> 5772d4d)

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

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


    from 623d5cd  Spend less time waiting for LocalTaskJob's subprocss process to finish (#11373)
     add 5772d4d  Add endpoints for task instances (#9597)

No new revisions were added by this update.

Summary of changes:
 .../endpoints/task_instance_endpoint.py            | 292 ++++++-
 airflow/api_connexion/openapi/v1.yaml              |  94 +-
 airflow/api_connexion/schemas/enum_schemas.py      |   8 +
 .../schemas/{log_schema.py => sla_miss_schema.py}  |  28 +-
 .../api_connexion/schemas/task_instance_schema.py  | 166 ++++
 .../endpoints/test_task_instance_endpoint.py       | 944 ++++++++++++++++++++-
 tests/api_connexion/schemas/test_error_schema.py   |   4 -
 .../schemas/test_task_instance_schema.py           | 209 +++++
 tests/test_utils/api_connexion_utils.py            |   2 +-
 9 files changed, 1678 insertions(+), 69 deletions(-)
 copy airflow/api_connexion/schemas/{log_schema.py => sla_miss_schema.py} (59%)
 create mode 100644 airflow/api_connexion/schemas/task_instance_schema.py
 create mode 100644 tests/api_connexion/schemas/test_task_instance_schema.py