File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
vllm/distributed/ec_transfer Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 22# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
33from typing import TYPE_CHECKING
44
5- from vllm import envs
65from vllm .distributed .ec_transfer .ec_connector .base import (
76 ECConnectorBase ,
87 ECConnectorRole ,
@@ -38,9 +37,6 @@ def ensure_ec_transfer_initialized(vllm_config: "VllmConfig") -> None:
3837 vllm_config .ec_transfer_config .is_ec_transfer_instance
3938 and _EC_CONNECTOR_AGENT is None
4039 ):
41- if envs .VLLM_USE_V1 :
42- _EC_CONNECTOR_AGENT = ECConnectorFactory .create_connector (
43- config = vllm_config , role = ECConnectorRole .WORKER
44- )
45- else :
46- raise ValueError ("V0 is no longer supported" )
40+ _EC_CONNECTOR_AGENT = ECConnectorFactory .create_connector (
41+ config = vllm_config , role = ECConnectorRole .WORKER
42+ )
You can’t perform that action at this time.
0 commit comments