From: Casey Bodley Date: Fri, 23 Aug 2024 19:55:44 +0000 (-0400) Subject: test/rgw: include --rgw-realm/zonegroup/zone args for 'account create' X-Git-Tag: v19.2.1~267^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f85baff89ee03d54582d2f8704a409fb8e96192f;p=ceph.git test/rgw: include --rgw-realm/zonegroup/zone args for 'account create' Signed-off-by: Casey Bodley (cherry picked from commit aa1ba5de6e730d039967c4ce1d0892f65905f56a) --- diff --git a/src/test/rgw/test_multi.py b/src/test/rgw/test_multi.py index 295c70883f755..1ccd43b5eaa27 100644 --- a/src/test/rgw/test_multi.py +++ b/src/test/rgw/test_multi.py @@ -382,7 +382,9 @@ def init(parse_args): arg += admin_creds.credential_args() admin_user.create(zone, arg) # create test account/user - cluster.admin(['account', 'create', '--account-id', user.account]) + arg = ['--account-id', user.account] + arg += zone.zone_args() + cluster.admin(['account', 'create'] + arg) arg = ['--display-name', 'TestUser'] arg += user_creds.credential_args() user.create(zone, arg)