s3 presigned test

This commit is contained in:
withchao 2023-07-10 19:13:15 +08:00
parent 4203705bf5
commit 06a5ef9417

View File

@ -203,10 +203,11 @@ func (c *Controller) CompleteUpload(ctx context.Context, uploadID string, partHa
if copyInfo.ETag != uploadInfo.ETag {
return nil, errors.New("[concurrency]copy md5 mismatching")
}
if _, err := c.impl.CopyObject(ctx, copyInfo.Key, c.HashPath(upload.Hash)); err != nil {
hashCopyInfo, err := c.impl.CopyObject(ctx, copyInfo.Key, c.HashPath(upload.Hash))
if err != nil {
return nil, err
}
targetKey = copyInfo.Key
targetKey = hashCopyInfo.Key
default:
return nil, errors.New("invalid upload id type")
}