You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/10/10 05:44:06 UTC

[airflow] branch main updated: Use returned value directly rather than XCom as was done previously (#26835)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 869c9cefed Use returned value directly rather than XCom as was done previously (#26835)
869c9cefed is described below

commit 869c9cefed2d6b7d512cb131392ea8931135855a
Author: syedahsn <10...@users.noreply.github.com>
AuthorDate: Sun Oct 9 22:43:57 2022 -0700

    Use returned value directly rather than XCom as was done previously (#26835)
---
 tests/system/providers/amazon/aws/example_redshift_s3_transfers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/system/providers/amazon/aws/example_redshift_s3_transfers.py b/tests/system/providers/amazon/aws/example_redshift_s3_transfers.py
index 263b6e5b44..7a8f4feb38 100644
--- a/tests/system/providers/amazon/aws/example_redshift_s3_transfers.py
+++ b/tests/system/providers/amazon/aws/example_redshift_s3_transfers.py
@@ -220,7 +220,7 @@ with DAG(
     )
 
     delete_sg = delete_security_group(
-        sec_group_id=set_up_sg['security_group_id'],
+        sec_group_id=set_up_sg,
         sec_group_name=sg_name,
     )