dont emit warning for Max in memory queue flush count (#12489)

This commit is contained in:
Ishaan Jaff 2025-07-10 10:36:16 -07:00 committed by GitHub
parent a0d6900223
commit 6f22dab4b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ class BaseUpdateQueue:
while not self.update_queue.empty():
# Circuit breaker to ensure we're not stuck dequeuing updates. Protect CPU utilization
if len(updates) >= MAX_IN_MEMORY_QUEUE_FLUSH_COUNT:
verbose_proxy_logger.warning(
verbose_proxy_logger.debug(
"Max in memory queue flush count reached, stopping flush"
)
break