mirror of
https://github.com/ceph/ceph
synced 2025-03-20 09:16:59 +00:00
test: ceph daemon command with asok path
pg-split-merge using ceph daemon command to check merge.
but it doesn't use asok path, which causes the check not to
return the correct output. change the command to use asok path.
Fixes: https://tracker.ceph.com/issues/65737
Signed-off-by: Nitzan Mordechai <nmordech@redhat.com>
(cherry picked from commit a76bf0de58
)
This commit is contained in:
parent
132230d08a
commit
74bb2c0617
@ -103,7 +103,7 @@ function TEST_import_after_merge_and_gap() {
|
||||
|
||||
ceph osd pool set foo pg_num 1
|
||||
sleep 5
|
||||
while ceph daemon osd.0 perf dump | jq '.osd.numpg' | grep 2 ; do sleep 1 ; done
|
||||
while CEPH_ARGS='' ceph --admin-daemon $(get_asok_path osd.0) perf dump | jq '.osd.numpg' | grep 2 ; do sleep 1 ; done
|
||||
wait_for_clean || return 1
|
||||
|
||||
#
|
||||
@ -176,7 +176,7 @@ function TEST_import_after_split() {
|
||||
|
||||
ceph osd pool set foo pg_num 2
|
||||
sleep 5
|
||||
while ceph daemon osd.0 perf dump | jq '.osd.numpg' | grep 1 ; do sleep 1 ; done
|
||||
while CEPH_ARGS='' ceph --admin-daemon $(get_asok_path osd.0) perf dump | jq '.osd.numpg' | grep 1 ; do sleep 1 ; done
|
||||
wait_for_clean || return 1
|
||||
|
||||
kill_daemons $dir TERM osd.0 || return 1
|
||||
|
Loading…
Reference in New Issue
Block a user