Skip to content

Commit

Permalink
add acl
Browse files Browse the repository at this point in the history
  • Loading branch information
BinamB committed Nov 25, 2024
1 parent c99478c commit 6a8c564
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dcfdataservice/aws_replicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,9 @@ def _handler_single_upload():
# if size >= 10 * 1024 * 1024:
try:
multipart_upload = thread_s3.create_multipart_upload(
Bucket=target_bucket, Key=object_path
Bucket=target_bucket,
Key=object_path,
ACL="bucket-owner-full-control",
)
except botocore.exceptions.ClientError as error:
logger.error(
Expand Down

0 comments on commit 6a8c564

Please sign in to comment.