summaryrefslogtreecommitdiffstats
path: root/src/crimson/osd/osd.cc
diff options
context:
space:
mode:
authorKefu Chai <kchai@redhat.com>2020-08-04 08:27:35 +0200
committerKefu Chai <kchai@redhat.com>2020-08-04 09:28:47 +0200
commit98eb401025381ae5ff4b8921db39c0e44e66a1af (patch)
tree3cc43f594da53f46d791c5a17aaf7b2e777d2f4e /src/crimson/osd/osd.cc
parentMerge pull request #36442 from rzarzynski/wip-crimson-op_truncate (diff)
downloadceph-98eb401025381ae5ff4b8921db39c0e44e66a1af.tar.xz
ceph-98eb401025381ae5ff4b8921db39c0e44e66a1af.zip
crimson/admin: move config hooks into admin_socket.cc
they are not specific to OSD, let's move them into admin_socket.cc Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to '')
-rw-r--r--src/crimson/osd/osd.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/crimson/osd/osd.cc b/src/crimson/osd/osd.cc
index 87409c242f7..8454780f4ca 100644
--- a/src/crimson/osd/osd.cc
+++ b/src/crimson/osd/osd.cc
@@ -429,9 +429,6 @@ seastar::future<> OSD::start_asok_admin()
asok->register_admin_commands(),
asok->register_command(make_asok_hook<OsdStatusHook>(*this)),
asok->register_command(make_asok_hook<SendBeaconHook>(*this)),
- asok->register_command(make_asok_hook<ConfigShowHook>()),
- asok->register_command(make_asok_hook<ConfigGetHook>()),
- asok->register_command(make_asok_hook<ConfigSetHook>()),
asok->register_command(make_asok_hook<FlushPgStatsHook>(*this)));
});
}