We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 671351d commit 2e03c78Copy full SHA for 2e03c78
lightllm/server/pd_io_struct.py
@@ -51,16 +51,9 @@ def to_llm_url(self):
51
class PD_Master_Obj:
52
node_id: int
53
host_ip_port: str
54
-
55
- def __post_init__(self):
56
- if not self.host_ip_port or not self.node_id:
57
- error_info = f"host_ip_port must be set"
58
- logger.error(error_info)
59
- raise ValueError(error_info)
60
- return
61
62
def to_log_str(self):
63
- return f"PD_MASTER host_ip_port: {self.host_ip_port}"
+ return f"PD_MASTER host_ip_port: {self.host_ip_port} node_id: {self.node_id}"
64
65
@dataclass
66
class UpKVStatus:
0 commit comments