From: Or Friedmann Date: Wed, 6 May 2020 11:27:13 +0000 (+0300) Subject: rgw: unable to compile fcgi frontend X-Git-Tag: v16.1.0~2391^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F34923%2Fhead;p=ceph.git rgw: unable to compile fcgi frontend Although we are not supporting this frontend it is still possible with cmake to compile it This fix is intend to be able to compile fcgi Signed-off-by: Or Friedmann --- diff --git a/src/rgw/rgw_fcgi_process.cc b/src/rgw/rgw_fcgi_process.cc index 6bb11025269..452868a29c4 100644 --- a/src/rgw/rgw_fcgi_process.cc +++ b/src/rgw/rgw_fcgi_process.cc @@ -89,7 +89,7 @@ void RGWFCGXProcess::run() } for (;;) { - RGWFCGXRequest* req = new RGWFCGXRequest(store->get_new_req_id(), &qr); + RGWFCGXRequest* req = new RGWFCGXRequest(store->getRados()->get_new_req_id(), &qr); dout(10) << "allocated request req=" << hex << req << dec << dendl; req_throttle.get(1); int ret = FCGX_Accept_r(req->fcgx);