Fixes: #8585
Have a default name for the data extra pool, otherwise it would be empty
which means that it'd default to the data pool name (which is a problem
with ec backends).
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
static string shadow_ns = "shadow";
static string dir_oid_prefix = ".dir.";
static string default_storage_pool = ".rgw.buckets";
+static string default_storage_extra_pool = ".rgw.buckets.extra";
static string avail_pools = ".pools.avail";
static string zone_info_oid_prefix = "zone_info.";
RGWZonePlacementInfo default_placement;
default_placement.index_pool = ".rgw.buckets.index";
default_placement.data_pool = ".rgw.buckets";
+ default_placement.data_extra_pool = ".rgw.buckets.extra";
placement_pools["default-placement"] = default_placement;
}
}