diff options
author | Daniel Gryniewicz <dang@redhat.com> | 2021-03-09 15:16:48 +0100 |
---|---|---|
committer | Daniel Gryniewicz <dang@redhat.com> | 2021-04-15 19:28:10 +0200 |
commit | fd0cca079c488f242e10ff2514a3588f288b3773 (patch) | |
tree | 9abe7c406c2af7d01229f6f7c13933b791963e48 /src/rgw/rgw_rest.h | |
parent | Merge pull request #40873 from tchaikov/wip-50374 (diff) | |
download | ceph-fd0cca079c488f242e10ff2514a3588f288b3773.tar.xz ceph-fd0cca079c488f242e10ff2514a3588f288b3773.zip |
RGW Zipper - The Great Rename
Rename RGWFoo to Foo. It's all in the rgw::sal namespace anyway, so the
RGW is redundant.
Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
Diffstat (limited to 'src/rgw/rgw_rest.h')
-rw-r--r-- | src/rgw/rgw_rest.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rgw/rgw_rest.h b/src/rgw/rgw_rest.h index e39abbc029b..cd1a30693db 100644 --- a/src/rgw/rgw_rest.h +++ b/src/rgw/rgw_rest.h @@ -121,7 +121,7 @@ protected: public: RGWGetObj_ObjStore() : sent_header(false) {} - void init(rgw::sal::RGWStore *store, struct req_state *s, RGWHandler *h) override { + void init(rgw::sal::Store *store, struct req_state *s, RGWHandler *h) override { RGWGetObj::init(store, s, h); sent_header = false; } @@ -504,7 +504,7 @@ protected: RGWRESTFlusher flusher; public: - void init(rgw::sal::RGWStore *store, struct req_state *s, + void init(rgw::sal::Store *store, struct req_state *s, RGWHandler *dialect_handler) override { RGWOp::init(store, s, dialect_handler); flusher.init(s, this); @@ -597,7 +597,7 @@ public: } virtual RGWHandler_REST* get_handler( - rgw::sal::RGWStore *store, + rgw::sal::Store *store, struct req_state* const s, const rgw::auth::StrategyRegistry& auth_registry, const std::string& frontend_prefix @@ -629,7 +629,7 @@ class RGWREST { static int preprocess(struct req_state *s, rgw::io::BasicClient* rio); public: RGWREST() {} - RGWHandler_REST *get_handler(rgw::sal::RGWStore *store, + RGWHandler_REST *get_handler(rgw::sal::Store *store, struct req_state *s, const rgw::auth::StrategyRegistry& auth_registry, const std::string& frontend_prefix, |