From f8ec23e79dc7ab6edb14b462506096a9ebe24bc2 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 23 Sep 2011 09:40:52 -0700 Subject: [PATCH] rbd: default to all: --- teuthology/task/rbd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/rbd.py b/teuthology/task/rbd.py index 5bc1697733b37..b7c211f553d01 100644 --- a/teuthology/task/rbd.py +++ b/teuthology/task/rbd.py @@ -378,6 +378,8 @@ def task(ctx, config): image_size: 20480 fs_type: xfs """ + if config is None: + config = { all: None } norm_config = config if isinstance(config, dict): norm_config = teuthology.replace_all_with_clients(ctx.cluster, config) -- 2.39.5