Merge pull request #1102 from versity/ben/s3-tag-notimplemented

This commit is contained in:
Ben McClelland
2025-03-03 07:28:24 -08:00
committed by GitHub

View File

@@ -1132,6 +1132,9 @@ func (s *S3Proxy) GetBucketAcl(ctx context.Context, input *s3.GetBucketAclInput)
if strings.Contains(ae.ErrorCode(), "NoSuchTagSet") {
return []byte{}, nil
}
if strings.Contains(ae.ErrorCode(), "NotImplemented") {
return []byte{}, nil
}
}
return nil, handleError(err)
}