From f935fc9b400a48004e4980c87191e5e80f447529 Mon Sep 17 00:00:00 2001 From: Noah Hilverling Date: Fri, 9 Oct 2020 15:40:13 +0200 Subject: [PATCH] IDO-Logging: Increase logging threshold for nearly empty queue --- lib/db_ido/dbconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db_ido/dbconnection.cpp b/lib/db_ido/dbconnection.cpp index 83cf6517e..62a9c5c3d 100644 --- a/lib/db_ido/dbconnection.cpp +++ b/lib/db_ido/dbconnection.cpp @@ -259,7 +259,7 @@ void DbConnection::LogStatsHandler() auto output = round(m_OutputQueries.CalculateRate(now, 10)); - if (pending < output * 2 && !timeoutReached) { + if (pending < output * 5 && !timeoutReached) { return; }