mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
fix(test_parallel_request_limiter): increase time limit for waiting for success logging event to happen
This commit is contained in:
parent
85cbe5fb4c
commit
c91ab81fde
3 changed files with 11 additions and 3 deletions
|
@ -17,7 +17,12 @@ class MaxParallelRequestsHandler(CustomLogger):
|
|||
pass
|
||||
|
||||
def print_verbose(self, print_statement):
|
||||
verbose_proxy_logger.debug(print_statement)
|
||||
try:
|
||||
verbose_proxy_logger.debug(print_statement)
|
||||
if litellm.set_verbose:
|
||||
print(print_statement) # noqa
|
||||
except:
|
||||
pass
|
||||
|
||||
async def async_pre_call_hook(
|
||||
self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue