Skip to content

Commit 88c88d1

Browse files
committed
fix
Signed-off-by: Yongji Wu <[email protected]>
1 parent afd1e57 commit 88c88d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vllm/config/parallel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,17 +202,17 @@ class is dynamically inherited by the worker class. This is used to inject
202202
Set to be private as it's not intended to be configured by users.
203203
"""
204204

205-
_stateless_world_group_port_list: list[int] = field(default_factory=list)
205+
_stateless_world_group_port_list: list[int] = Field(default_factory=list)
206206
"""List of open ports for stateless world group when enable_elastic_ep is True.
207207
Set to be private as it's not intended to be configured by users.
208208
"""
209209

210-
_stateless_dp_group_port_list: list[int] = field(default_factory=list)
210+
_stateless_dp_group_port_list: list[int] = Field(default_factory=list)
211211
"""List of open ports for stateless DP groups when enable_elastic_ep is True.
212212
Set to be private as it's not intended to be configured by users.
213213
"""
214214

215-
_stateless_ep_group_port_list: list[int] = field(default_factory=list)
215+
_stateless_ep_group_port_list: list[int] = Field(default_factory=list)
216216
"""List of open ports for stateless EP groups when enable_elastic_ep is True.
217217
Set to be private as it's not intended to be configured by users.
218218
"""

0 commit comments

Comments
 (0)