diff options
author | Ronen Friedman <rfriedma@redhat.com> | 2024-04-07 09:48:35 +0200 |
---|---|---|
committer | Ronen Friedman <rfriedma@redhat.com> | 2024-04-07 17:45:00 +0200 |
commit | dda89e77ae6d0a1c7f351c74192417bf60fde3f4 (patch) | |
tree | b1225aece814fd547dbc93bb9f4a42e3709281e7 /qa/tasks/ceph.py | |
parent | Merge pull request #56738 from zdover23/wip-doc-2024-04-05-dev-peering-concep... (diff) | |
download | ceph-dda89e77ae6d0a1c7f351c74192417bf60fde3f4.tar.xz ceph-dda89e77ae6d0a1c7f351c74192417bf60fde3f4.zip |
tests/scripts: use 'tell pg deep-scrub pgid' instead of 'tell pgid
deep-scrub'
as older OSD versions do not support the former.
Fixes: https://tracker.ceph.com/issues/64972
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
Diffstat (limited to 'qa/tasks/ceph.py')
-rw-r--r-- | qa/tasks/ceph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index 39f4033ac4f..a7b3ad4c5ee 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -1303,7 +1303,7 @@ def osd_scrub_pgs(ctx, config): # request was missed. do not do it every time because # the scrub may be in progress or not reported yet and # we will starve progress. - manager.raw_cluster_cmd('tell', pgid, 'deep-scrub') + manager.raw_cluster_cmd('pg', 'deep-scrub', pgid) if gap_cnt > retries: raise RuntimeError('Exiting scrub checking -- not all pgs scrubbed.') if loop: |