From 6c53c36bfebc82b55864e67ca6a155ccf01a5fd8 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 21 Oct 2021 01:48:52 +0200 Subject: [PATCH] Remove server query quota. --- client/TracyProfiler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index 279ac30f..48cdd469 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -1782,9 +1782,8 @@ void Profiler::Worker() keepAlive = 0; } - int quota = 500; bool connActive = true; - while( quota-- && m_sock->HasData() ) + while( m_sock->HasData() ) { connActive = HandleServerQuery(); if( !connActive ) break;