fix(proxy): revert unrelated formatting change to pass lint

Remove accidental verbose_proxy_logger.debug reformatting that caused
black --check to fail in CI.
This commit is contained in:
yryzhan 2026-05-20 17:34:13 +02:00
parent a5794a1ff0
commit 38660efdfc

View file

@ -2709,9 +2709,11 @@ def run_ollama_serve():
with open(os.devnull, "w") as devnull:
subprocess.Popen(command, stdout=devnull, stderr=devnull)
except Exception as e:
verbose_proxy_logger.debug(f"""
verbose_proxy_logger.debug(
f"""
LiteLLM Warning: proxy started with `ollama` model\n`ollama serve` failed with Exception{e}. \nEnsure you run `ollama serve`
""")
"""
)
def _get_process_rss_mb() -> Optional[float]: