/v1/events: remove anti-deadlock hack

This commit is contained in:
Alexander A. Klimov 2019-04-05 17:36:50 +02:00 committed by Michael Friedrich
parent 81713d0509
commit 94db282fd1
1 changed files with 0 additions and 3 deletions

View File

@ -110,7 +110,6 @@ bool EventsHandler::HandleRequest(
}
asio::const_buffer newLine ("\n", 1);
AsioConditionVariable dontLockOwnStrand (stream.get_io_service(), true);
for (;;) {
auto event (subscriber.GetInbox()->Shift(yc));
@ -129,8 +128,6 @@ bool EventsHandler::HandleRequest(
stream.async_flush(yc);
} else if (server.Disconnected()) {
return true;
} else {
dontLockOwnStrand.Wait(yc);
}
}
}