You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by el...@apache.org on 2022/12/06 21:20:34 UTC

[airflow] branch main updated (42c30724d3 -> 39f501d4f4)

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

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


    from 42c30724d3 AIP-51 - Local Executor Compatibility (#27941)
     add 39f501d4f4 Add `FTPFileTransmitOperator` (#26974)

No new revisions were added by this update.

Summary of changes:
 airflow/providers/ftp/hooks/ftp.py                 |   2 +-
 .../ftp/operators}/__init__.py                     |   0
 airflow/providers/ftp/operators/ftp.py             | 132 +++++++++++++++
 airflow/providers/ftp/provider.yaml                |   5 +
 airflow/utils/db.py                                |  12 ++
 docs/apache-airflow-providers-ftp/index.rst        |  12 ++
 .../operators/index.rst                            |  48 ++++++
 .../providers/ftp/operators}/__init__.py           |   0
 tests/providers/ftp/operators/test_ftp.py          | 186 +++++++++++++++++++++
 .../system/providers/ftp}/__init__.py              |  33 ++--
 .../livy/example_livy.py => ftp/example_ftp.py}    |  47 +++---
 11 files changed, 438 insertions(+), 39 deletions(-)
 copy airflow/{api_connexion => providers/ftp/operators}/__init__.py (100%)
 create mode 100644 airflow/providers/ftp/operators/ftp.py
 create mode 100644 docs/apache-airflow-providers-ftp/operators/index.rst
 copy {airflow/api_connexion => tests/providers/ftp/operators}/__init__.py (100%)
 create mode 100644 tests/providers/ftp/operators/test_ftp.py
 copy {airflow/api/auth => tests/system/providers/ftp}/__init__.py (98%)
 copy tests/system/providers/{apache/livy/example_livy.py => ftp/example_ftp.py} (59%)