ceph-helpers.sh: don't test the osd_max_backfills value

This isn't a very meaningful assert since the default could
easily change.

Signed-off-by: Samuel Just <sjust@redhat.com>
This commit is contained in:
Samuel Just 2015-07-16 14:56:13 -07:00
parent a3f9cba7bc
commit cd2d7d086f

View File

@ -419,7 +419,6 @@ function test_run_osd() {
run_osd $dir 0 || return 1
local backfills=$(CEPH_ARGS='' ceph --format=json daemon $dir//ceph-osd.0.asok \
config get osd_max_backfills)
test "$backfills" = '{"osd_max_backfills":"10"}' || return 1
run_osd $dir 1 --osd-max-backfills 20 || return 1
local backfills=$(CEPH_ARGS='' ceph --format=json daemon $dir//ceph-osd.1.asok \
@ -520,7 +519,6 @@ function test_activate_osd() {
run_osd $dir 0 || return 1
local backfills=$(CEPH_ARGS='' ceph --format=json daemon $dir//ceph-osd.0.asok \
config get osd_max_backfills)
test "$backfills" = '{"osd_max_backfills":"10"}' || return 1
kill_daemons $dir TERM osd || return 1