cluster: Make sure messages are processed in-order.

This commit is contained in:
Gunnar Beutner 2013-09-03 10:42:19 +02:00
parent 2b77aa06aa
commit 8e381e0298
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ void Endpoint::MessageThreadProc(const Stream::Ptr& stream)
return;
}
Utility::QueueAsyncCallback(boost::bind(boost::ref(Endpoint::OnMessageReceived), GetSelf(), message));
OnMessageReceived(GetSelf(), message);
}
}