From: Greg Farnum Date: Mon, 15 Aug 2011 22:31:18 +0000 (-0700) Subject: ceph task: pass the full config to the daemon startup subs X-Git-Tag: 1.1.0~2851^2~5 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=98ac89a54e896c8febff937b73e9a27ca8491611;p=teuthology.git ceph task: pass the full config to the daemon startup subs So far as I can tell there is no reason to reduce them to the coverage config, and I want the full config for my soon-to-exist valgrind options. Signed-off-by: Greg Farnum --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 60a11dab4d..3fa590fe48 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -780,15 +780,9 @@ def task(ctx, config): lambda: cluster(ctx=ctx, config=dict( conf=config.get('conf', {}) )), - lambda: mon(ctx=ctx, config=dict( - coverage=config.get('coverage'), - )), - lambda: osd(ctx=ctx, config=dict( - coverage=config.get('coverage'), - )), - lambda: mds(ctx=ctx, config=dict( - coverage=config.get('coverage'), - )), + lambda: mon(ctx=ctx, config=config), + lambda: osd(ctx=ctx, config=config), + lambda: mds(ctx=ctx, config=config), ): healthy(ctx=ctx, config=None) yield