From 8a69d252f593d7a881a0412ebbd9990115943719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=B0=8F=E7=99=BD?= <364772080@qq.com> Date: Mon, 28 Apr 2025 23:10:58 +0800 Subject: [PATCH] Fix a bug in `blob-store.sh` (#29537) This will overwrite the `acl` parameter that we pass in Release Notes: - N/A --- script/lib/blob-store.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/script/lib/blob-store.sh b/script/lib/blob-store.sh index 2cc5c2a455..8a119bc826 100644 --- a/script/lib/blob-store.sh +++ b/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}"