]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-helpers.sh: don't test the osd_max_backfills value 5189/head
authorSamuel Just <sjust@redhat.com>
Thu, 16 Jul 2015 21:56:13 +0000 (14:56 -0700)
committerSamuel Just <sjust@redhat.com>
Thu, 23 Jul 2015 17:41:45 +0000 (10:41 -0700)
This isn't a very meaningful assert since the default could
easily change.

Signed-off-by: Samuel Just <sjust@redhat.com>
qa/workunits/ceph-helpers.sh

index f5a2ee405c81ebb9bfbfb1ae3f61a4e4e597b93b..6dce2107664bb2a9a6a72deffacaa25f42f49f7d 100755 (executable)
@@ -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