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 9354660 commit bfad142Copy full SHA for bfad142
vllm/distributed/kv_transfer/kv_connector/v1/nixl_connector.py
@@ -241,7 +241,8 @@ def get_block_ids_with_load_errors(self) -> set[int]:
241
return self.connector_worker.get_block_ids_with_load_errors()
242
243
def get_kv_connector_stats(self) -> KVConnectorStats | None:
244
- assert self.connector_worker is not None
+ if self.connector_worker is None:
245
+ return None
246
return self.connector_worker.get_kv_connector_stats()
247
248
@classmethod
0 commit comments