mirror of https://github.com/Icinga/icinga2.git
Bugfixes.
This commit is contained in:
parent
7f299fb2a7
commit
e294cf6686
|
@ -153,11 +153,6 @@ size_t TlsClient::FlushSendQueue(void)
|
|||
{
|
||||
int rc;
|
||||
|
||||
if (!WantsToWrite())
|
||||
return 0;
|
||||
|
||||
std::cerr << "tls sendq: " << GetSendQueue()->GetSize() << " bytes" << std::endl;
|
||||
|
||||
m_BlockRead = false;
|
||||
m_BlockWrite = false;
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ void CheckerComponent::ResultTimerHandler(void)
|
|||
|
||||
{
|
||||
stringstream msgbuf;
|
||||
msgbuf << "Pending services: " << m_PendingServices.size() << "; idle services: " << m_Services.size();
|
||||
msgbuf << "Pending services: " << m_PendingServices.size() << "; Idle services: " << m_Services.size();
|
||||
Application::Log(LogInformation, "checker", msgbuf.str());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue