RGW Zipper - get_ctl() no longer needed

Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
This commit is contained in:
Daniel Gryniewicz 2021-02-19 09:40:57 -05:00
parent 200f71a90c
commit 8efaf76235
2 changed files with 0 additions and 2 deletions

View File

@ -173,7 +173,6 @@ class RGWStore {
RGWObjectCtx& obj_ctx, std::unique_ptr<rgw::sal::RGWObject> _head_obj,
const DoutPrefixProvider *dpp, optional_yield y) = 0;
virtual RGWLC* get_rgwlc(void) = 0;
virtual RGWCtl* get_ctl(void) = 0;
virtual RGWCoroutinesManagerRegistry* get_cr_registry() = 0;
virtual int delete_raw_obj(const rgw_raw_obj& obj) = 0;
virtual int delete_raw_obj_aio(const rgw_raw_obj& obj, Completions* aio) = 0;

View File

@ -405,7 +405,6 @@ class RGWRadosStore : public RGWStore {
RGWObjectCtx& obj_ctx, std::unique_ptr<rgw::sal::RGWObject> _head_obj,
const DoutPrefixProvider *dpp, optional_yield y) override;
virtual RGWLC* get_rgwlc(void) override { return rados->get_lc(); }
virtual RGWCtl* get_ctl(void) override { return rados->pctl; }
virtual RGWCoroutinesManagerRegistry* get_cr_registry() override { return rados->get_cr_registry(); }
virtual int delete_raw_obj(const rgw_raw_obj& obj) override;
virtual int delete_raw_obj_aio(const rgw_raw_obj& obj, Completions* aio) override;