Skip to content

Commit

Permalink
Fix multipart part.size (#274)
Browse files Browse the repository at this point in the history
Fixes #273

Regresssion from #265
  • Loading branch information
klauspost authored Jun 23, 2023
1 parent 60bf3d5 commit 802079f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/multipart.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ FLAGS:
func mainMultipart(ctx *cli.Context) error {
checkMultipartSyntax(ctx)
b := bench.Multipart{
Common: getCommon(ctx, newGenSource(ctx, "obj.size")),
Common: getCommon(ctx, newGenSource(ctx, "part.size")),
ObjName: ctx.String("obj.name"),
PartStart: ctx.Int("_part-start"),
UploadID: ctx.String("_upload-id"),
Expand Down

0 comments on commit 802079f

Please sign in to comment.