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 842cfca commit e55913aCopy full SHA for e55913a
vllm/distributed/kv_transfer/kv_connector/v1/multi_connector.py
@@ -40,7 +40,7 @@ class MultiConnector(KVConnectorBase_V1):
40
41
def __init__(self, vllm_config: "VllmConfig", role: KVConnectorRole):
42
super().__init__(vllm_config=vllm_config, role=role)
43
- self._connectors = []
+ self._connectors: list[KVConnectorBase_V1] = []
44
ktcs = vllm_config.kv_transfer_config.kv_connector_extra_config.get(
45
"connectors")
46
assert ktcs is not None
0 commit comments