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/06/16 08:23:35 UTC

[airflow] branch master updated (58a8ec0 -> 47bddf7)

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

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


    from 58a8ec0  AWSBatchOperator <> ClientHook relation changed to composition (#9306)
     add 47bddf7  Add schema and read-only endpoints for Import errors (#9217)

No new revisions were added by this update.

Summary of changes:
 .../{pool_endpoint.py => import_error_endpoint.py} |  49 +++---
 .../endpoints/import_errror_endpoint.py            |  40 -----
 airflow/api_connexion/exceptions.py                |   2 -
 airflow/api_connexion/openapi/v1.yaml              |   6 +-
 .../{event_log_schema.py => error_schema.py}       |  49 +++---
 .../endpoints/test_import_error_endpoint.py        | 169 +++++++++++++++++++++
 .../endpoints/test_import_errror_endpoint.py       |  52 -------
 tests/api_connexion/schemas/test_error_schema.py   | 106 +++++++++++++
 tests/test_utils/db.py                             |   5 +
 9 files changed, 326 insertions(+), 152 deletions(-)
 copy airflow/api_connexion/endpoints/{pool_endpoint.py => import_error_endpoint.py} (61%)
 delete mode 100644 airflow/api_connexion/endpoints/import_errror_endpoint.py
 copy airflow/api_connexion/schemas/{event_log_schema.py => error_schema.py} (54%)
 create mode 100644 tests/api_connexion/endpoints/test_import_error_endpoint.py
 delete mode 100644 tests/api_connexion/endpoints/test_import_errror_endpoint.py
 create mode 100644 tests/api_connexion/schemas/test_error_schema.py