mirror of https://github.com/Icinga/icinga2.git
parent
9622b075bc
commit
d7000fa757
|
@ -103,6 +103,9 @@ void ApiClient::SendMessageSync(const Dictionary::Ptr& message)
|
||||||
|
|
||||||
void ApiClient::Disconnect(void)
|
void ApiClient::Disconnect(void)
|
||||||
{
|
{
|
||||||
|
m_TimeoutTimer->Stop();
|
||||||
|
m_TimeoutTimer.reset();
|
||||||
|
|
||||||
Log(LogWarning, "ApiClient")
|
Log(LogWarning, "ApiClient")
|
||||||
<< "API client disconnected for identity '" << m_Identity << "'";
|
<< "API client disconnected for identity '" << m_Identity << "'";
|
||||||
|
|
||||||
|
@ -113,11 +116,7 @@ void ApiClient::Disconnect(void)
|
||||||
listener->RemoveAnonymousClient(this);
|
listener->RemoveAnonymousClient(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
m_Stream->Close();
|
m_Stream->Close();
|
||||||
} catch (const std::exception&) {
|
|
||||||
/* Ignore the exception. */
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ApiClient::ProcessMessage(void)
|
bool ApiClient::ProcessMessage(void)
|
||||||
|
|
Loading…
Reference in New Issue