IDO-Logging: Increase logging threshold for nearly empty queue

This commit is contained in:
Noah Hilverling 2020-10-09 15:40:13 +02:00
parent d377996176
commit 04fc0014ce
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}