From a46dd6b6056ed6ece2be08e4f2d2d7b3ea27b8cb Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 10 Nov 2012 08:41:41 -0800 Subject: [PATCH] ceph-fuse: apply overrides[ceph-fuse] to config --- teuthology/task/ceph-fuse.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/teuthology/task/ceph-fuse.py b/teuthology/task/ceph-fuse.py index 9d139215507c4..ee619c953e75c 100644 --- a/teuthology/task/ceph-fuse.py +++ b/teuthology/task/ceph-fuse.py @@ -38,7 +38,7 @@ def task(ctx, config): - ceph: - ceph-fuse: client.0: - valgrind: --tool=memcheck + valgrind: [--tool=memcheck, --leak-check=full, --show-reachable=yes] - interactive: """ @@ -51,6 +51,9 @@ def task(ctx, config): elif isinstance(config, list): config = dict((name, None) for name in config) + overrides = ctx.config.get('overrides', {}) + teuthology.deep_merge(config, overrides.get('ceph-fuse', {})) + clients = list(teuthology.get_clients(ctx=ctx, roles=config.keys())) for id_, remote in clients: -- 2.39.5