From 07640bd46e8a326f74823c1f292c6794d88c2779 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Mon, 1 Jul 2019 12:08:11 -0400 Subject: [PATCH] qa/rgw: swift task filters out config for skipped clients Signed-off-by: Casey Bodley (cherry picked from commit ba3c17c4fad8672d95af0f3cb9e0fb4802d712e6) --- qa/tasks/swift.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/tasks/swift.py b/qa/tasks/swift.py index 491efb95b9fa2..dcecfca1d83fb 100644 --- a/qa/tasks/swift.py +++ b/qa/tasks/swift.py @@ -247,6 +247,8 @@ def task(ctx, config): }, } ) + # only take config for valid clients + config = {c: config[c] for c in clients} log.info('clients={c}'.format(c=config.keys())) with contextutil.nested( -- 2.39.5