feat: implement posix UploadCopyPart

This commit is contained in:
Ben McClelland
2023-07-05 19:06:19 -07:00
parent db484eb900
commit 47dea2db7c
4 changed files with 139 additions and 107 deletions
+2 -2
View File
@@ -667,8 +667,8 @@ func TestS3ApiController_PutActions(t *testing.T) {
SetTagsFunc: func(bucket, object string, tags map[string]string) error {
return nil
},
UploadPartCopyFunc: func(uploadPartCopyInput *s3.UploadPartCopyInput) (*s3.UploadPartCopyOutput, error) {
return &s3.UploadPartCopyOutput{}, nil
UploadPartCopyFunc: func(uploadPartCopyInput *s3.UploadPartCopyInput) (s3response.CopyObjectResult, error) {
return s3response.CopyObjectResult{}, nil
},
},
}