Unverified Commit 8a81d776 authored by Yongtao Huang's avatar Yongtao Huang Committed by GitHub
Browse files

Fix typo in ValueError message: use `kv_role` instead of `kv_disagg_role` (#27166)


Signed-off-by: default avatarYongtao Huang <yongtaoh2022@gmail.com>
parent f6fdacd8
...@@ -94,7 +94,7 @@ class KVTransferConfig: ...@@ -94,7 +94,7 @@ class KVTransferConfig:
if self.kv_connector is not None and self.kv_role is None: if self.kv_connector is not None and self.kv_role is None:
raise ValueError( raise ValueError(
"Please specify kv_disagg_role when kv_connector " "Please specify kv_role when kv_connector "
f"is set, supported roles are {get_args(KVRole)}" f"is set, supported roles are {get_args(KVRole)}"
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment