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/14 16:35:43 UTC

[airflow] branch master updated (cef1df4 -> 2362853)

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 cef1df4  Add dev script to compare GH issues against merges (#9270)
     add 2362853  Refactor create_app in airflow/www/app.py (#9291)

No new revisions were added by this update.

Summary of changes:
 airflow/www/api/experimental/endpoints.py          |   6 -
 airflow/www/app.py                                 | 341 ++++-----------------
 .../hooks => airflow/www/extensions}/__init__.py   |   0
 airflow/www/extensions/init_appbuilder.py          |  53 ++++
 .../www/extensions/init_appbuilder_links.py        |  28 +-
 airflow/www/extensions/init_jinja_globals.py       |  65 ++++
 .../init_manifest_files.py}                        |  14 +-
 .../extensions/init_security.py}                   |  37 ++-
 .../extensions/init_session.py}                    |  38 ++-
 airflow/www/extensions/init_views.py               | 118 +++++++
 airflow/www/extensions/init_wsgi_middlewares.py    |  52 ++++
 scripts/ci/pylint_todo.txt                         |   1 -
 12 files changed, 408 insertions(+), 345 deletions(-)
 copy {tests/providers/zendesk/hooks => airflow/www/extensions}/__init__.py (100%)
 create mode 100644 airflow/www/extensions/init_appbuilder.py
 copy tests/utils/test_module_loading.py => airflow/www/extensions/init_appbuilder_links.py (53%)
 create mode 100644 airflow/www/extensions/init_jinja_globals.py
 rename airflow/www/{static_config.py => extensions/init_manifest_files.py} (86%)
 copy airflow/{utils/configuration.py => www/extensions/init_security.py} (54%)
 copy airflow/{utils/serve_logs.py => www/extensions/init_session.py} (51%)
 create mode 100644 airflow/www/extensions/init_views.py
 create mode 100644 airflow/www/extensions/init_wsgi_middlewares.py