diff --git a/python/sglang/srt/disaggregation/common/conn.py b/python/sglang/srt/disaggregation/common/conn.py index 8f36f6ee4..5f671519c 100644 --- a/python/sglang/srt/disaggregation/common/conn.py +++ b/python/sglang/srt/disaggregation/common/conn.py @@ -1298,12 +1298,6 @@ class CommonKVSender(BaseKVSender): self.kv_mgr.update_status(self.bootstrap_room, KVPoll.Failed) return KVPoll.Failed - def poll(self) -> KVPoll: - pass - - def failure_exception(self): - raise Exception("Fake KVReceiver Exception") - def clear(self) -> None: self.kv_mgr.request_status.pop(self.bootstrap_room, None) if hasattr(self.kv_mgr, "req_to_decode_prefix_len"): @@ -1562,9 +1556,6 @@ class CommonKVReceiver(BaseKVReceiver): self.abort_notified = True return KVPoll.Failed - def failure_exception(self): - raise Exception("Fake KVReceiver Exception") - def clear(self) -> None: self.kv_mgr.request_status.pop(self.bootstrap_room, None) self.kv_mgr.required_prefill_response_num_table.pop(self.bootstrap_room, None)