Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s5u13b committed Jan 17, 2025
1 parent 41bfe2f commit 1c8cf45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llumnix/entrypoints/vllm/api_server_actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _run_uvicorn_server(self,
host=entrypoints_args.host,
port=entrypoints_args.port,
log_level=entrypoints_args.log_level,
timeout_keep_alive=llumnix.entrypoints.vllm.api_server.TIMEOUT_KEEP_ALIVE,
timeout_keep_alive=llumnix.entrypoints.vllm.api_server.SERVER_TIMEOUT_KEEP_ALIVE,
ssl_keyfile=entrypoints_args.ssl_keyfile,
ssl_certfile=entrypoints_args.ssl_certfile)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit_test/entrypoints/vllm/api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def run_uvicorn_server(host: str, port: int, entrypoints_context: EntrypointsCon
host=host,
port=port,
log_level="debug",
timeout_keep_alive=llumnix.entrypoints.vllm.api_server.TIMEOUT_KEEP_ALIVE)
timeout_keep_alive=llumnix.entrypoints.vllm.api_server.SERVER_TIMEOUT_KEEP_ALIVE)


if __name__ == "__main__":
Expand Down

0 comments on commit 1c8cf45

Please sign in to comment.