From 1feca42f4c581016385a9c643f2b2d6d77e4f4c0 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Thu, 5 Sep 2019 15:48:43 -0400 Subject: [PATCH] qa/rgw: fix for extra_args in s3tests task Signed-off-by: Casey Bodley --- qa/tasks/s3tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/s3tests.py b/qa/tasks/s3tests.py index dfc7f86665e9e..b3c51d2f7b6af 100644 --- a/qa/tasks/s3tests.py +++ b/qa/tasks/s3tests.py @@ -281,7 +281,7 @@ def run_tests(ctx, config): '-a', ','.join(attrs), ] if client_config is not None and 'extra_args' in client_config: - args.extend(client_config['extra_args']) + args.append(client_config['extra_args']) remote.run( args=args, -- 2.39.5