diff options
author | Casey Bodley <cbodley@redhat.com> | 2023-02-18 19:11:45 +0100 |
---|---|---|
committer | Casey Bodley <cbodley@redhat.com> | 2023-02-18 23:07:28 +0100 |
commit | f4df0acb01171cff86c8ec1ab455798f2b4bf6dd (patch) | |
tree | 73a4281c9c5171a3e531728732d6babf820cd934 /src/rgw/driver/rados/rgw_tools.cc | |
parent | rgw/sal: StoreObject doesn't store separate attrs (diff) | |
download | ceph-f4df0acb01171cff86c8ec1ab455798f2b4bf6dd.tar.xz ceph-f4df0acb01171cff86c8ec1ab455798f2b4bf6dd.zip |
rgw/rados: remove sal handles from RGWRados::Object ops
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Diffstat (limited to 'src/rgw/driver/rados/rgw_tools.cc')
-rw-r--r-- | src/rgw/driver/rados/rgw_tools.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/driver/rados/rgw_tools.cc b/src/rgw/driver/rados/rgw_tools.cc index 22c1b26971c..1c2951c4bcd 100644 --- a/src/rgw/driver/rados/rgw_tools.cc +++ b/src/rgw/driver/rados/rgw_tools.cc @@ -323,7 +323,7 @@ int RGWDataAccess::Object::put(bufferlist& data, string req_id = driver->zone_unique_id(driver->get_new_req_id()); std::unique_ptr<rgw::sal::Writer> processor; - processor = driver->get_atomic_writer(dpp, y, std::move(obj), + processor = driver->get_atomic_writer(dpp, y, obj.get(), owner.get_id(), nullptr, olh_epoch, req_id); |