diff options
author | Kefu Chai <kchai@redhat.com> | 2020-08-04 08:27:35 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2020-08-04 09:28:47 +0200 |
commit | 98eb401025381ae5ff4b8921db39c0e44e66a1af (patch) | |
tree | 3cc43f594da53f46d791c5a17aaf7b2e777d2f4e /src/crimson/osd/osd.cc | |
parent | Merge pull request #36442 from rzarzynski/wip-crimson-op_truncate (diff) | |
download | ceph-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.cc | 3 |
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))); }); } |