The log_data and log_metadata are made configurable
via the YAML file and default to false
(meaning neither data nor metadata operations are
logged).
Signed-off-by: Joe Buck <jbbuck@gmail.com>
if key in ceph_config:
zone_info[key] = ceph_config[key]
+ # these keys are meant for the zones argument in the region info.
+ # We insert them into zone_info with a different format and then remove them
+ # in the fill_in_endpoints() method
+ for key in ['rgw log meta', 'rgw log data']:
+ if key in ceph_config:
+ zone_info[key] = ceph_config[key]
+
return region, zone, zone_info
def extract_region_info(region, region_info):