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 30afa46e90 Increase width of execution_date input in trigger.html 
(#36278) (#36304)
30afa46e90 is described below

commit 30afa46e90cd1ee17d03e6fa9fa3022223374ccf
Author: Superzapple <[email protected]>
AuthorDate: Fri Dec 22 01:30:59 2023 +0800

    Increase width of execution_date input in trigger.html (#36278) (#36304)
    
    Co-authored-by: Sungyun Hur <[email protected]>
---
 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 72ef1cb292..6bd0b0a750 100644
--- a/airflow/providers/amazon/aws/hooks/s3.py
+++ b/airflow/providers/amazon/aws/hooks/s3.py
@@ -1233,6 +1233,7 @@ class S3Hook(AwsBaseHook):
         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 @@ class S3Hook(AwsBaseHook):
 
         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
 

Reply via email to