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

张小白 created

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

Release Notes:

- N/A

Change summary

script/lib/blob-store.sh | 1 -
1 file changed, 1 deletion(-)

Detailed changes

script/lib/blob-store.sh 🔗

@@ -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}"