mirror of
https://github.com/ceph/ceph
synced 2025-01-02 09:02:34 +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>
This commit is contained in:
parent
c2b21dbf69
commit
a76bf0de58
@ -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