From 83a428c1ba51ce8348ff73b53e6707707df844e2 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 9 Oct 2018 16:01:43 +0200 Subject: [PATCH] Keep the HTTP server connection open until the stream is EOF fixes #4968 --- lib/remote/httpserverconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/remote/httpserverconnection.cpp b/lib/remote/httpserverconnection.cpp index 337673a69..913814b79 100644 --- a/lib/remote/httpserverconnection.cpp +++ b/lib/remote/httpserverconnection.cpp @@ -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();