update all our deps (#16899)

This commit is contained in:
Harshavardhana
2023-03-28 03:45:24 -07:00
committed by GitHub
parent 16feef2a2c
commit 8e02660a0d
4 changed files with 59 additions and 50 deletions

View File

@@ -1424,7 +1424,12 @@ func replicateObjectWithMultipart(ctx context.Context, c *minio.Core, bucket, ob
if err != nil {
return err
}
pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.ActualSize, "", "", opts.ServerSideEncryption)
popts := minio.PutObjectPartOptions{
SSE: opts.ServerSideEncryption,
}
pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.ActualSize, popts)
if err != nil {
return err
}