From: Sage Weil Date: Fri, 24 Feb 2017 22:52:19 +0000 (-0500) Subject: mgr: don't crash on bad auth msg from client X-Git-Tag: v12.0.2~252^2~61 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f052a2c6f4be989a573d0e9209c2646c4feefb6f;p=ceph.git mgr: don't crash on bad auth msg from client Signed-off-by: Sage Weil --- diff --git a/src/mgr/DaemonServer.cc b/src/mgr/DaemonServer.cc index 65270fe4015..f130d53a12e 100644 --- a/src/mgr/DaemonServer.cc +++ b/src/mgr/DaemonServer.cc @@ -122,7 +122,6 @@ bool DaemonServer::ms_verify_authorizer(Connection *con, auto handler = auth_registry.get_handler(protocol); if (!handler) { dout(0) << "No AuthAuthorizeHandler found for protocol " << protocol << dendl; - ceph_abort(); is_valid = false; return true; }