mirror of
https://github.com/ceph/ceph
synced 2024-12-16 00:15:35 +00:00
Merge pull request #16889 from oritwas/wip-rgw-20177
rgw: Use namespace for lc_pool and roles_pool Reviewed-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com> Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
This commit is contained in:
commit
f88047ae30
@ -1254,7 +1254,7 @@ struct RGWZoneParams : RGWSystemMetaObj {
|
||||
if (struct_v >= 7) {
|
||||
::decode(lc_pool, bl);
|
||||
} else {
|
||||
lc_pool.init(name + ".rgw.lc");
|
||||
lc_pool = log_pool.name + ":lc";
|
||||
}
|
||||
if (struct_v >= 8) {
|
||||
::decode(tier_config, bl);
|
||||
@ -1262,7 +1262,7 @@ struct RGWZoneParams : RGWSystemMetaObj {
|
||||
if (struct_v >= 9) {
|
||||
::decode(roles_pool, bl);
|
||||
} else {
|
||||
roles_pool = name + ".rgw.roles";
|
||||
roles_pool = name + ".rgw.meta:roles";
|
||||
}
|
||||
if (struct_v >= 10) {
|
||||
::decode(reshard_pool, bl);
|
||||
|
Loading…
Reference in New Issue
Block a user