From 98ac89a54e896c8febff937b73e9a27ca8491611 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Mon, 15 Aug 2011 15:31:18 -0700 Subject: [PATCH] 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 --- teuthology/task/ceph.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 60a11dab4d7ae..3fa590fe48dff 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 -- 2.39.5