diff options
author | Orit Wasserman <owasserm@redhat.com> | 2015-07-13 14:56:53 +0200 |
---|---|---|
committer | Yehuda Sadeh <yehuda@redhat.com> | 2016-02-09 22:40:52 +0100 |
commit | 796e4703095a79519adc65fcd4169c0d2eb3ba64 (patch) | |
tree | 0da3aaf026e2790eac870c0954abd4d108930a90 /src/rgw/rgw_dencoder.cc | |
parent | rgw: Add period admin commands and rest api to handle period (diff) | |
download | ceph-796e4703095a79519adc65fcd4169c0d2eb3ba64.tar.xz ceph-796e4703095a79519adc65fcd4169c0d2eb3ba64.zip |
rgw: Rename Region to ZoneGroup only internal structures and class
User visuable are not changed: admin commands, jsons and rados objects names
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Conflicts:
src/rgw/rgw_admin.cc
src/rgw/rgw_rados.cc
Diffstat (limited to 'src/rgw/rgw_dencoder.cc')
-rw-r--r-- | src/rgw/rgw_dencoder.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rgw/rgw_dencoder.cc b/src/rgw/rgw_dencoder.cc index 36fd0cc1167..0b4fdf5944c 100644 --- a/src/rgw/rgw_dencoder.cc +++ b/src/rgw/rgw_dencoder.cc @@ -419,11 +419,11 @@ void RGWBucketInfo::generate_test_instances(list<RGWBucketInfo*>& o) o.push_back(new RGWBucketInfo); } -void RGWRegion::generate_test_instances(list<RGWRegion*>& o) +void RGWZoneGroup::generate_test_instances(list<RGWZoneGroup*>& o) { - RGWRegion *r = new RGWRegion; + RGWZoneGroup *r = new RGWZoneGroup; o.push_back(r); - o.push_back(new RGWRegion); + o.push_back(new RGWZoneGroup); } void RGWZone::generate_test_instances(list<RGWZone*> &o) |