From: Yehuda Sadeh Date: Tue, 3 Dec 2019 17:22:26 +0000 (-0800) Subject: qa: s3a-hadoop: fix user creation X-Git-Tag: v15.1.0~22^2~26 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d04ea3aab5b4774dd445f176989f8037645a7871;p=ceph-ci.git qa: s3a-hadoop: fix user creation This breaks with the new more strict radosgw-admin command line parsing Signed-off-by: Yehuda Sadeh --- diff --git a/qa/tasks/s3a_hadoop.py b/qa/tasks/s3a_hadoop.py index 9ac5517bd0d..4e414eeafb6 100644 --- a/qa/tasks/s3a_hadoop.py +++ b/qa/tasks/s3a_hadoop.py @@ -136,7 +136,7 @@ def setup_user_bucket(client, dns_name, access_key, secret_key, bucket_name, tes 'create', run.Raw('--uid'), 's3a', - run.Raw('--display-name=s3a cephtests'), + run.Raw('--display-name="s3a cephtests"'), run.Raw('--access-key={access_key}'.format(access_key=access_key)), run.Raw('--secret-key={secret_key}'.format(secret_key=secret_key)), run.Raw('--email=s3a@ceph.com'),