Skip to content

Commit

Permalink
qa/tasks/radosbench: use long form of option for compatibility
Browse files Browse the repository at this point in the history
Since the short version of --object-size changed from -o to -O, it
does not work with upgrade tests.

Signed-off-by: Josh Durgin <[email protected]>
  • Loading branch information
jdurgin committed Jun 9, 2020
1 parent a78781d commit 9673d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/tasks/radosbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def task(ctx, config):
if osize == 0:
objectsize = []
else:
objectsize = ['-O', str(osize)]
objectsize = ['--object-size', str(osize)]
size = ['-b', str(config.get('size', 65536))]
# If doing a reading run then populate data
if runtype != "write":
Expand Down

0 comments on commit 9673d37

Please sign in to comment.