mirror of https://github.com/Icinga/icinga2.git
Revert "Fix another deadlock in ApiClient::SendMessage"
This reverts commit a0c0930325
.
This commit is contained in:
parent
1723d97ed0
commit
8b1579381e
|
@ -67,7 +67,7 @@ ConnectionRole ApiClient::GetRole(void) const
|
|||
void ApiClient::SendMessage(const Dictionary::Ptr& message)
|
||||
{
|
||||
try {
|
||||
boost::mutex::scoped_lock lock(m_WriteMutex);
|
||||
ObjectLock olock(m_Stream);
|
||||
JsonRpc::SendMessage(m_Stream, message);
|
||||
if (message->Get("method") != "log::SetLogPosition")
|
||||
m_Seen = Utility::GetTime();
|
||||
|
|
|
@ -58,7 +58,6 @@ public:
|
|||
void SendMessage(const Dictionary::Ptr& request);
|
||||
|
||||
private:
|
||||
boost::mutex m_WriteMutex;
|
||||
String m_Identity;
|
||||
Endpoint::Ptr m_Endpoint;
|
||||
Stream::Ptr m_Stream;
|
||||
|
|
Loading…
Reference in New Issue