Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: reg11184 might not always find pg 2.0 prior to import #16610

Merged
merged 1 commit into from
Jul 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions qa/tasks/reg11184.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,11 @@ def task(ctx, config):
manager.mark_down_osd(non_divergent[0])
# manager.mark_out_osd(non_divergent[0])

# An empty collection for pg 2.0 needs to be cleaned up
# An empty collection for pg 2.0 might need to be cleaned up
cmd = ((prefix + "--op remove --pgid 2.0").
format(id=non_divergent[0]))
proc = exp_remote.run(args=cmd, wait=True,
check_status=False, stdout=StringIO())
assert proc.exitstatus == 0

cmd = ((prefix + "--op import --file {file}").
format(id=non_divergent[0], file=expfile))
Expand Down