Skip to content

Commit 5d96533

Browse files
[Bugfix][P/D] Fix Prefix Cache Bug (#18411)
Signed-off-by: nicklucche <[email protected]> Co-authored-by: Robert Shaw <[email protected]>
1 parent 4de790f commit 5d96533

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vllm/distributed/kv_transfer/kv_connector/v1/nixl_connector.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,8 @@ def _read_blocks(
739739
# just notify P worker that we have the blocks we need.
740740
num_local_blocks = len(local_block_ids)
741741
if num_local_blocks == 0:
742-
self.nixl_wrapper.send_notif(dst_engine_id,
742+
agent_name = self._remote_agents[dst_engine_id]
743+
self.nixl_wrapper.send_notif(agent_name,
743744
notif_msg=request_id.encode("utf-8"))
744745
return
745746

0 commit comments

Comments
 (0)