Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
0b0d6421
Unverified
Commit
0b0d6421
authored
Mar 14, 2025
by
Russell Bryant
Committed by
GitHub
Mar 14, 2025
Browse files
[Frontend] Fix log message to use http vs https (#14774)
Signed-off-by:
Russell Bryant
<
rbryant@redhat.com
>
parent
1140991a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
vllm/entrypoints/openai/api_server.py
vllm/entrypoints/openai/api_server.py
+4
-2
No files found.
vllm/entrypoints/openai/api_server.py
View file @
0b0d6421
...
...
@@ -955,8 +955,10 @@ async def run_server(args, **uvicorn_kwargs) -> None:
return
'['
+
a
+
']'
return
a
or
"0.0.0.0"
logger
.
info
(
"Starting vLLM API server on http://%s:%d"
,
_listen_addr
(
sock_addr
[
0
]),
sock_addr
[
1
])
is_ssl
=
args
.
ssl_keyfile
and
args
.
ssl_certfile
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
(
app
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment