You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by tu...@apache.org on 2020/06/11 19:54:19 UTC

[airflow] branch master updated (0682e78 -> ecbb366)

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

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


    from 0682e78  Additional apt dependencies options in breeze (#9231)
     add ecbb366  Add readonly connection API endpoints (#9095)

No new revisions were added by this update.

Summary of changes:
 .../api_connexion/endpoints/connection_endpoint.py |  35 +++-
 .../exceptions.py}                                 |  14 +-
 airflow/api_connexion/openapi/v1.yaml              |   7 +-
 .../__init__.py => api_connexion/parameters.py}    |   5 +-
 .../api_connexion/schemas}/__init__.py             |   0
 airflow/api_connexion/schemas/connection_schema.py |  66 +++++++
 airflow/www/app.py                                 |   2 +
 .../endpoints/test_connection_endpoint.py          | 167 +++++++++++++++-
 .../hooks => api_connexion/schemas}/__init__.py    |   0
 .../schemas/test_connection_schema.py              | 210 +++++++++++++++++++++
 10 files changed, 478 insertions(+), 28 deletions(-)
 copy airflow/{www/gunicorn_config.py => api_connexion/exceptions.py} (76%)
 copy airflow/{serialization/__init__.py => api_connexion/parameters.py} (92%)
 copy {tests/providers/zendesk/hooks => airflow/api_connexion/schemas}/__init__.py (100%)
 create mode 100644 airflow/api_connexion/schemas/connection_schema.py
 copy tests/{providers/zendesk/hooks => api_connexion/schemas}/__init__.py (100%)
 create mode 100644 tests/api_connexion/schemas/test_connection_schema.py