From abc1661474033d611339a43aeb99e842881148eb Mon Sep 17 00:00:00 2001 From: Sungyun Hur Date: Tue, 19 Dec 2023 18:56:52 +0900 Subject: [PATCH] Increase width of execution_date input in trigger.html (#36278) --- airflow/providers/amazon/aws/hooks/s3.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airflow/providers/amazon/aws/hooks/s3.py b/airflow/providers/amazon/aws/hooks/s3.py index 72ef1cb29223a4..6bd0b0a7506a61 100644 --- a/airflow/providers/amazon/aws/hooks/s3.py +++ b/airflow/providers/amazon/aws/hooks/s3.py @@ -1233,6 +1233,7 @@ def copy_object( dest_bucket_name: str | None = None, source_version_id: str | None = None, acl_policy: str | None = None, + **kwargs, ) -> None: """ Create a copy of an object that is already stored in S3. @@ -1274,7 +1275,7 @@ def copy_object( copy_source = {"Bucket": source_bucket_name, "Key": source_bucket_key, "VersionId": source_version_id} response = self.get_conn().copy_object( - Bucket=dest_bucket_name, Key=dest_bucket_key, CopySource=copy_source, ACL=acl_policy + Bucket=dest_bucket_name, Key=dest_bucket_key, CopySource=copy_source, ACL=acl_policy, **kwargs ) return response