You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ta...@apache.org on 2022/12/14 07:23:48 UTC

[airflow] branch main updated (552d13be56 -> 9d9b15989a)

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

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


    from 552d13be56 Add support for k8s 1.26 (#28320)
     add 9d9b15989a Create `LambdaCreateFunctionOperator` and sensor (#28241)

No new revisions were added by this update.

Summary of changes:
 .../providers/amazon/aws/hooks/lambda_function.py  |   7 +-
 .../amazon/aws/operators/lambda_function.py        | 120 ++++++++++++++---
 .../aws/sensors/{athena.py => lambda_function.py}  |  67 +++++-----
 airflow/providers/amazon/provider.yaml             |   3 +
 .../operators/lambda.rst                           |  35 ++++-
 .../amazon/aws/hooks/test_lambda_function.py       | 148 +++++++++++----------
 .../{test_lambda.py => test_lambda_function.py}    |  45 ++++++-
 .../amazon/aws/sensors/test_lambda_function.py     |  71 ++++++++++
 .../system/providers/amazon/aws/example_lambda.py  |  57 ++++----
 9 files changed, 396 insertions(+), 157 deletions(-)
 copy airflow/providers/amazon/aws/sensors/{athena.py => lambda_function.py} (52%)
 rename tests/providers/amazon/aws/operators/{test_lambda.py => test_lambda_function.py} (73%)
 create mode 100644 tests/providers/amazon/aws/sensors/test_lambda_function.py