Keep the HTTP server connection open until the stream is EOF

fixes #4968
This commit is contained in:
Michael Friedrich 2018-10-09 16:01:43 +02:00
parent e6eb703b36
commit 83a428c1ba
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ void HttpServerConnection::DataAvailableHandler()
void HttpServerConnection::CheckLiveness()
{
if (m_Seen < Utility::GetTime() - 10 && m_PendingRequests == 0) {
if (m_Seen < Utility::GetTime() - 10 && m_PendingRequests == 0 && m_Stream->IsEof()) {
Log(LogInformation, "HttpServerConnection")
<< "No messages for Http connection have been received in the last 10 seconds.";
Disconnect();