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
6accb21f
Unverified
Commit
6accb21f
authored
Mar 18, 2026
by
Aaron Hao
Committed by
GitHub
Mar 19, 2026
Browse files
[bug] Fix deadlock with pause resume and collective_rpc (#37024)
Signed-off-by:
hao-aaron
<
ahao@anyscale.com
>
parent
053f3b63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
vllm/v1/engine/core.py
vllm/v1/engine/core.py
+5
-1
No files found.
vllm/v1/engine/core.py
View file @
6accb21f
...
...
@@ -1632,7 +1632,11 @@ class DPEngineCoreProc(EngineCoreProc):
if
self
.
has_coordinator
and
request_wave
!=
self
.
current_wave
:
if
request_wave
>
self
.
current_wave
:
self
.
current_wave
=
request_wave
elif
not
self
.
engines_running
:
elif
(
not
self
.
engines_running
and
self
.
scheduler
.
pause_state
==
PauseState
.
UNPAUSED
):
self
.
engines_running
=
True
# Request received for an already-completed wave, notify
# front-end that we need to start the next one.
self
.
output_queue
.
put_nowait
(
...
...
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