Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
ed5272cf
Unverified
Commit
ed5272cf
authored
May 07, 2025
by
Nick Hill
Committed by
GitHub
May 07, 2025
Browse files
[BugFix] Avoid secondary missing `MultiprocExecutor.workers` error (#17811)
Signed-off-by:
Nick Hill
<
nhill@redhat.com
>
parent
c20ef40f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
vllm/v1/executor/multiproc_executor.py
vllm/v1/executor/multiproc_executor.py
+4
-3
No files found.
vllm/v1/executor/multiproc_executor.py
View file @
ed5272cf
...
...
@@ -258,9 +258,10 @@ class MultiprocExecutor(Executor):
self
.
io_thread_pool
.
shutdown
(
wait
=
False
,
cancel_futures
=
True
)
self
.
io_thread_pool
=
None
for
w
in
self
.
workers
:
w
.
worker_response_mq
=
None
self
.
_ensure_worker_termination
([
w
.
proc
for
w
in
self
.
workers
])
if
workers
:
=
getattr
(
self
,
'workers'
,
None
):
for
w
in
workers
:
w
.
worker_response_mq
=
None
self
.
_ensure_worker_termination
([
w
.
proc
for
w
in
workers
])
self
.
rpc_broadcast_mq
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment