summaryrefslogtreecommitdiffstats
path: root/src/rgw/services/svc_finisher.cc
diff options
context:
space:
mode:
authorYehuda Sadeh <yehuda@redhat.com>2018-10-04 02:18:57 +0200
committerYehuda Sadeh <yehuda@redhat.com>2018-11-08 18:19:29 +0100
commit4c0675bbc3f554acd052c11329287efc16b02357 (patch)
tree3daef11357a27d8e641e1bd1c2d38ad64d922c0e /src/rgw/services/svc_finisher.cc
parentrgw: api fixes following rebase (diff)
downloadceph-4c0675bbc3f554acd052c11329287efc16b02357.tar.xz
ceph-4c0675bbc3f554acd052c11329287efc16b02357.zip
rgw: svc: due to popular demand, get rid of service registry
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Diffstat (limited to 'src/rgw/services/svc_finisher.cc')
-rw-r--r--src/rgw/services/svc_finisher.cc14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/rgw/services/svc_finisher.cc b/src/rgw/services/svc_finisher.cc
index dd1150deebe..d239ff3c4fa 100644
--- a/src/rgw/services/svc_finisher.cc
+++ b/src/rgw/services/svc_finisher.cc
@@ -2,19 +2,7 @@
#include "svc_finisher.h"
-int RGWS_Finisher::create_instance(const string& conf, RGWServiceInstanceRef *instance)
-{
- instance->reset(new RGWSI_Finisher(this, cct));
- return 0;
-}
-
-std::map<string, RGWServiceInstance::dependency> RGWSI_Finisher::get_deps()
-{
- std::map<string, RGWServiceInstance::dependency> dep;
- return dep;
-}
-
-int RGWSI_Finisher::init()
+int RGWSI_Finisher::do_start()
{
finisher = new Finisher(cct);
finisher->start();