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/05/09 22:52:42 UTC

[airflow] branch master updated (db1b51d -> bc19778)

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

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


    from db1b51d  Make celery worker_prefetch_multiplier configurable (#8695)
     add bc19778  [AIP-31] Implement XComArg to pass output from one operator to the next (#8652)

No new revisions were added by this update.

Summary of changes:
 airflow/models/baseoperator.py |  32 +++++++--
 airflow/models/xcom_arg.py     | 149 ++++++++++++++++++++++++++++++++++++++
 tests/models/test_xcom_arg.py  | 157 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 334 insertions(+), 4 deletions(-)
 create mode 100644 airflow/models/xcom_arg.py
 create mode 100644 tests/models/test_xcom_arg.py