Skip to content

Commit

Permalink
Increase width of execution_date input in trigger.html (apache#36278)
Browse files Browse the repository at this point in the history
  • Loading branch information
HurSungYun authored and samezapple committed Dec 20, 2023
1 parent 0858a88 commit abc1661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion airflow/providers/amazon/aws/hooks/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit abc1661

Please sign in to comment.