From: Liao Pingfang Date: Tue, 14 Jul 2020 02:07:56 +0000 (+0800) Subject: mgr: Remove the superfluous break X-Git-Tag: v16.1.0~1681^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b2582ee8a440788b4aef4d26baa4cc2b67b1d579;p=ceph.git mgr: Remove the superfluous break Remove the superfuous break, as there is a 'return' before it. Signed-off-by: Liao Pingfang --- diff --git a/src/mgr/Mgr.cc b/src/mgr/Mgr.cc index b36320edb13..c107703e455 100644 --- a/src/mgr/Mgr.cc +++ b/src/mgr/Mgr.cc @@ -549,7 +549,6 @@ bool Mgr::ms_dispatch2(const ref_t& m) py_module_registry->notify_all("fs_map", ""); handle_fs_map(ref_cast(m)); return false; // I shall let this pass through for Client - break; case CEPH_MSG_OSD_MAP: handle_osd_map();