Skip to content

Commit 2c24bc6

Browse files
hickeymagemini-code-assist[bot]
authored andcommitted
[BugFix] [KVConnector] Fix KV events for LMCache connector (#32169)
Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 0aa8c40 commit 2c24bc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def get_kv_connector_kv_cache_events(self) -> LMCacheKVEvents | None:
234234
lora_id=e.lora_id,
235235
block_size=e.block_size,
236236
medium=e.medium,
237-
lora_name=e.lora_name,
237+
lora_name=getattr(e, "lora_name", None),
238238
)
239239
for e in events
240240
]

0 commit comments

Comments
 (0)