From fdde365858c4dea4d69ed2027a38cbfbd5c1c167 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 1 Aug 2013 18:54:52 -0700 Subject: [PATCH] rgw: don't make domain_root pool the same as zone root These are supposed to be separate pools. Signed-off-by: Josh Durgin --- teuthology/task/rgw.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/teuthology/task/rgw.py b/teuthology/task/rgw.py index 3ceb1cf3b6238..06d0d7fdf2311 100644 --- a/teuthology/task/rgw.py +++ b/teuthology/task/rgw.py @@ -267,12 +267,10 @@ def extract_zone_info(ctx, client, client_config): client=client) region = ceph_config['rgw region'] zone = ceph_config['rgw zone'] - zone_info = dict( - domain_root=ceph_config['rgw zone root pool'], - ) + zone_info = {} for key in ['control_pool', 'gc_pool', 'log_pool', 'intent_log_pool', 'usage_log_pool', 'user_keys_pool', 'user_email_pool', - 'user_swift_pool', 'user_uid_pool']: + 'user_swift_pool', 'user_uid_pool', 'domain_root']: zone_info[key] = '.' + region + '.' + zone + '.' + key # these keys are meant for the zones argument in the region info. -- 2.39.5