mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
dont emit warning for Max in memory queue flush count (#12489)
This commit is contained in:
parent
a0d6900223
commit
6f22dab4b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue