Fix a bug in blob-store.sh (#29537)

This will overwrite the `acl` parameter that we pass in

Release Notes:

- N/A
This commit is contained in:
张小白 2025-04-28 23:10:58 +08:00 committed by GitHub
parent bf30beacc2
commit 8a69d252f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,6 @@ function upload_to_blob_store_with_acl
acl="$4"
date=$(date +"%a, %d %b %Y %T %z")
acl="x-amz-acl:public-read"
content_type="application/octet-stream"
storage_type="x-amz-storage-class:STANDARD"
string="PUT\n\n${content_type}\n${date}\n${acl}\n${storage_type}\n/${bucket_name}/${blob_store_key}"