Skip to content

Commit 484d193

Browse files
committed
Fix typo in ValueError message: use kv_role instead of kv_disagg_role
Correct field name in ValueError message to match actual parameter kv_role. Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com>
1 parent 8a29711 commit 484d193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/config/kv_transfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __post_init__(self) -> None:
9494

9595
if self.kv_connector is not None and self.kv_role is None:
9696
raise ValueError(
97-
"Please specify kv_disagg_role when kv_connector "
97+
"Please specify kv_role when kv_connector "
9898
f"is set, supported roles are {get_args(KVRole)}"
9999
)
100100

0 commit comments

Comments
 (0)