mirror of
https://github.com/ceph/ceph
synced 2025-02-19 08:57:27 +00:00
rgw: dump the reshard pool in rgw zone params json
So that the zone get/put commands display the reshard pool as well Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
This commit is contained in:
parent
fad3c4992d
commit
a0d8149930
@ -904,6 +904,7 @@ void RGWZoneParams::dump(Formatter *f) const
|
||||
encode_json("log_pool", log_pool, f);
|
||||
encode_json("intent_log_pool", intent_log_pool, f);
|
||||
encode_json("usage_log_pool", usage_log_pool, f);
|
||||
encode_json("reshard_pool", reshard_pool, f);
|
||||
encode_json("user_keys_pool", user_keys_pool, f);
|
||||
encode_json("user_email_pool", user_email_pool, f);
|
||||
encode_json("user_swift_pool", user_swift_pool, f);
|
||||
@ -944,6 +945,7 @@ void RGWZoneParams::decode_json(JSONObj *obj)
|
||||
JSONDecoder::decode_json("lc_pool", lc_pool, obj);
|
||||
JSONDecoder::decode_json("log_pool", log_pool, obj);
|
||||
JSONDecoder::decode_json("intent_log_pool", intent_log_pool, obj);
|
||||
JSONDecoder::decode_json("reshard_pool", reshard_pool, obj);
|
||||
JSONDecoder::decode_json("usage_log_pool", usage_log_pool, obj);
|
||||
JSONDecoder::decode_json("user_keys_pool", user_keys_pool, obj);
|
||||
JSONDecoder::decode_json("user_email_pool", user_email_pool, obj);
|
||||
|
Loading…
Reference in New Issue
Block a user