]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph task: pass the full config to the daemon startup subs
authorGreg Farnum <gregory.farnum@dreamhost.com>
Mon, 15 Aug 2011 22:31:18 +0000 (15:31 -0700)
committerGreg Farnum <gregory.farnum@dreamhost.com>
Mon, 15 Aug 2011 22:31:18 +0000 (15:31 -0700)
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 <gregory.farnum@dreamhost.com>
teuthology/task/ceph.py

index 60a11dab4d7aec678e200d926bfe10f1321c9df8..3fa590fe48dff7eeca4222d98337e4d693afa964 100644 (file)
@@ -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