From: Samuel Just Date: Thu, 16 Jul 2015 21:56:13 +0000 (-0700) Subject: ceph-helpers.sh: don't test the osd_max_backfills value X-Git-Tag: v9.1.0~493^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cd2d7d086f97b612fc7e479416475b87b3ad4b55;p=ceph.git 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 --- diff --git a/qa/workunits/ceph-helpers.sh b/qa/workunits/ceph-helpers.sh index f5a2ee405c81e..6dce2107664bb 100755 --- a/qa/workunits/ceph-helpers.sh +++ b/qa/workunits/ceph-helpers.sh @@ -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