fix: aws-chunked encoding is not supported with the specified x-amz-content-sha256 value for some s3 providers (#4575)

Co-authored-by: Shawn L. <shawn@sola.sh>
pull/4577/head
Shawn 3 weeks ago committed by GitHub
parent 09c50a8419
commit 88b38ff2c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -32,6 +32,8 @@ func NewClient(ctx context.Context, s3Config *storepb.StorageS3Config) (*Client,
client := s3.NewFromConfig(cfg, func(o *s3.Options) { client := s3.NewFromConfig(cfg, func(o *s3.Options) {
o.BaseEndpoint = aws.String(s3Config.Endpoint) o.BaseEndpoint = aws.String(s3Config.Endpoint)
o.UsePathStyle = s3Config.UsePathStyle o.UsePathStyle = s3Config.UsePathStyle
o.RequestChecksumCalculation = aws.RequestChecksumCalculationWhenRequired
o.ResponseChecksumValidation = aws.ResponseChecksumValidationWhenRequired
}) })
return &Client{ return &Client{
Client: client, Client: client,

Loading…
Cancel
Save