diff options
Diffstat (limited to 'src/rgw/rgw_civetweb_frontend.cc')
-rw-r--r-- | src/rgw/rgw_civetweb_frontend.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rgw/rgw_civetweb_frontend.cc b/src/rgw/rgw_civetweb_frontend.cc index 80229426412..cda10f027fb 100644 --- a/src/rgw/rgw_civetweb_frontend.cc +++ b/src/rgw/rgw_civetweb_frontend.cc @@ -23,10 +23,10 @@ int RGWCivetWebFrontend::process(struct mg_connection* const conn) RWLock::RLocker lock(env.mutex); RGWRequest req(env.store->get_new_req_id()); - auto real_client_io = rgw_restful_io_add_reordering( - rgw_restful_io_add_buffering( - rgw_restful_io_add_chunking( - rgw_restful_io_add_conlen_controlling( + auto real_client_io = rgw::io::add_reordering( + rgw::io::add_buffering( + rgw::io::add_chunking( + rgw::io::add_conlen_controlling( RGWCivetWeb(conn, env.port))))); RGWRestfulIO client_io(&real_client_io); |