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
02296f42
"tests/v1/executor/test_executor.py" did not exist on "5368f76855b6d100c14f43f6f1920a4deb3d75f9"
Unverified
Commit
02296f42
authored
Mar 01, 2025
by
Li, Jiang
Committed by
GitHub
Feb 28, 2025
Browse files
[Bugfix][V1][Minor] Fix shutting_down flag checking in V1 MultiprocExecutor (#14053)
parent
6a92ff93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/v1/executor/multiproc_executor.py
vllm/v1/executor/multiproc_executor.py
+1
-1
No files found.
vllm/v1/executor/multiproc_executor.py
View file @
02296f42
...
...
@@ -170,7 +170,7 @@ class MultiprocExecutor(Executor):
def
shutdown
(
self
):
"""Properly shut down the executor and its workers"""
if
getattr
(
self
,
'shutting_down'
,
False
):
if
not
getattr
(
self
,
'shutting_down'
,
False
):
self
.
shutting_down
=
True
for
w
in
self
.
workers
:
w
.
worker_response_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