Unverified Commit 0b0d6421 authored by Russell Bryant's avatar Russell Bryant Committed by GitHub
Browse files

[Frontend] Fix log message to use http vs https (#14774)


Signed-off-by: default avatarRussell Bryant <rbryant@redhat.com>
parent 1140991a
...@@ -955,8 +955,10 @@ async def run_server(args, **uvicorn_kwargs) -> None: ...@@ -955,8 +955,10 @@ async def run_server(args, **uvicorn_kwargs) -> None:
return '[' + a + ']' return '[' + a + ']'
return a or "0.0.0.0" return a or "0.0.0.0"
logger.info("Starting vLLM API server on http://%s:%d", is_ssl = args.ssl_keyfile and args.ssl_certfile
_listen_addr(sock_addr[0]), sock_addr[1]) logger.info("Starting vLLM API server on http%s://%s:%d",
"s" if is_ssl else "", _listen_addr(sock_addr[0]),
sock_addr[1])
shutdown_task = await serve_http( shutdown_task = await serve_http(
app, app,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment