mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-05-13 14:12:29 +08:00
[Frontend] Fix log message to use http vs https (#14774)
Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
parent
1140991a7b
commit
0b0d6421b2
@ -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,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user