tasks/divergent_prior[2]: fix rados get syntax

Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2015-09-05 09:25:24 -04:00
parent 7b3ea31efe
commit 6064443ad1
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ def task(ctx, config):
log.info('reading divergent objects')
for i in range(DIVERGENT_WRITE + DIVERGENT_REMOVE):
exit_status = rados(ctx, mon, ['-p', 'foo', 'get', 'existing_%d' % i,
'-o', '/tmp/existing'])
'/tmp/existing'])
assert exit_status is 0
(remote,) = ctx.\

View File

@ -186,7 +186,7 @@ def task(ctx, config):
log.info('reading divergent objects')
for i in range(DIVERGENT_WRITE + DIVERGENT_REMOVE):
exit_status = rados(ctx, mon, ['-p', 'foo', 'get', 'existing_%d' % i,
'-o', '/tmp/existing'])
'/tmp/existing'])
assert exit_status is 0
(remote,) = ctx.\