From 507411bdf04486d229934db70642d0adb96ca89d Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 15 Aug 2021 19:16:00 -0700 Subject: [PATCH] fix https://github.com/chrislusf/seaweedfs/issues/2260 fix https://github.com/chrislusf/seaweedfs/issues/2260 --- weed/remote_storage/s3/s3_storage_client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/weed/remote_storage/s3/s3_storage_client.go b/weed/remote_storage/s3/s3_storage_client.go index 7c4d895ec..50b58b6ca 100644 --- a/weed/remote_storage/s3/s3_storage_client.go +++ b/weed/remote_storage/s3/s3_storage_client.go @@ -145,9 +145,6 @@ func (s *s3RemoteStorageClient) WriteFile(loc *filer_pb.RemoteStorageLocation, e Bucket: aws.String(loc.Bucket), Key: aws.String(loc.Path[1:]), Body: reader, - ACL: aws.String("private"), - ServerSideEncryption: aws.String("AES256"), - StorageClass: aws.String("STANDARD_IA"), Tagging: aws.String(tags), })