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 26dffd4c193 Fix - S3GetBucketTaggingOperator ignoring aws_conn_id
parameter (#63137)
26dffd4c193 is described below
commit 26dffd4c193316827dfe5bd6e2bea6402d04d1c7
Author: Justin Pakzad <[email protected]>
AuthorDate: Sun Mar 8 13:25:39 2026 -0400
Fix - S3GetBucketTaggingOperator ignoring aws_conn_id parameter (#63137)
---
providers/amazon/src/airflow/providers/amazon/aws/operators/s3.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/providers/amazon/src/airflow/providers/amazon/aws/operators/s3.py
b/providers/amazon/src/airflow/providers/amazon/aws/operators/s3.py
index d1e4f7848bb..f4582dc6ba6 100644
--- a/providers/amazon/src/airflow/providers/amazon/aws/operators/s3.py
+++ b/providers/amazon/src/airflow/providers/amazon/aws/operators/s3.py
@@ -150,7 +150,7 @@ class S3GetBucketTaggingOperator(AwsBaseOperator[S3Hook]):
template_fields: Sequence[str] = aws_template_fields("bucket_name")
aws_hook_class = S3Hook
- def __init__(self, bucket_name: str, aws_conn_id: str | None =
"aws_default", **kwargs) -> None:
+ def __init__(self, bucket_name: str, **kwargs) -> None:
super().__init__(**kwargs)
self.bucket_name = bucket_name