Skip to content

Commit 8ce4c07

Browse files
[Bugfix] Fix env name for VLLM_NIXL_SIDE_CHANNEL_HOST (#73)
Signed-off-by: rshaw@neuralmagic.com <robertgshaw2@gmail.com>
1 parent 2c50275 commit 8ce4c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/envs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def maybe_convert_int(value: Optional[str]) -> Optional[int]:
732732

733733
# IP address used for NIXL handshake between remote agents.
734734
"VLLM_NIXL_SIDE_CHANNEL_HOST":
735-
lambda: os.getenv("VLLM_NIXL_SIZE_CHANNEL_HOST", "localhost"),
735+
lambda: os.getenv("VLLM_NIXL_SIDE_CHANNEL_HOST", "localhost"),
736736

737737
# Port used for NIXL handshake between remote agents.
738738
"VLLM_NIXL_SIDE_CHANNEL_PORT":

0 commit comments

Comments
 (0)