diff options
author | Daniel Gryniewicz <dang@redhat.com> | 2020-08-25 16:00:27 +0200 |
---|---|---|
committer | Daniel Gryniewicz <dang@redhat.com> | 2020-09-08 17:51:28 +0200 |
commit | e40270a5d177f583bad96f00a4b6413085e1e9ba (patch) | |
tree | 710960bc322ee1122bbc716c272e6297bf8aeedf /src/rgw/rgw_op.h | |
parent | Zipper - Remove more instances of getRados() from rgw_op.cc (diff) | |
download | ceph-e40270a5d177f583bad96f00a4b6413085e1e9ba.tar.xz ceph-e40270a5d177f583bad96f00a4b6413085e1e9ba.zip |
Zipper - implement copy_object
Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
Diffstat (limited to 'src/rgw/rgw_op.h')
-rw-r--r-- | src/rgw/rgw_op.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rgw/rgw_op.h b/src/rgw/rgw_op.h index 8b3cc812d54..deaa012273b 100644 --- a/src/rgw/rgw_op.h +++ b/src/rgw/rgw_op.h @@ -1427,7 +1427,7 @@ protected: ceph::real_time unmod_time; ceph::real_time *mod_ptr; ceph::real_time *unmod_ptr; - map<string, buffer::list> attrs; + rgw::sal::RGWAttrs attrs; string src_tenant_name, src_bucket_name, src_obj_name; std::unique_ptr<rgw::sal::RGWBucket> src_bucket; std::unique_ptr<rgw::sal::RGWObject> src_object; @@ -1436,7 +1436,7 @@ protected: std::unique_ptr<rgw::sal::RGWObject> dest_object; ceph::real_time src_mtime; ceph::real_time mtime; - RGWRados::AttrsMod attrs_mod; + rgw::sal::AttrsMod attrs_mod; string source_zone; string etag; @@ -1463,7 +1463,7 @@ public: end = -1; mod_ptr = NULL; unmod_ptr = NULL; - attrs_mod = RGWRados::ATTRSMOD_NONE; + attrs_mod = rgw::sal::ATTRSMOD_NONE; last_ofs = 0; olh_epoch = 0; copy_if_newer = false; |