From: Gunnar Beutner Date: Thu, 11 Oct 2012 12:17:40 +0000 (+0200) Subject: Bugfix: Connecting to a remote node crashes Icinga2. X-Git-Tag: v0.0.1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e5702e31da81fdc72246c7ed5f0057775488171;p=icinga2 Bugfix: Connecting to a remote node crashes Icinga2. --- diff --git a/lib/remoting/endpointmanager.cpp b/lib/remoting/endpointmanager.cpp index 080f46aa0..a0cb240e8 100644 --- a/lib/remoting/endpointmanager.cpp +++ b/lib/remoting/endpointmanager.cpp @@ -147,8 +147,6 @@ void EndpointManager::NewClientHandler(const TcpClient::Ptr& client) { JsonRpcClient::Ptr jclient = static_pointer_cast(client); - Logger::Write(LogInformation, "icinga", "New client connection from " + jclient->GetPeerAddress()); - m_PendingClients.insert(jclient); jclient->OnConnected.connect(boost::bind(&EndpointManager::ClientConnectedHandler, this, _1)); jclient->Start(); @@ -158,6 +156,8 @@ void EndpointManager::ClientConnectedHandler(const TcpClient::Ptr& client) { JsonRpcClient::Ptr jclient = static_pointer_cast(client); + Logger::Write(LogInformation, "icinga", "New client connection for " + jclient->GetPeerAddress()); + m_PendingClients.erase(jclient); shared_ptr cert = jclient->GetPeerCertificate();