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
b2da14a0
Unverified
Commit
b2da14a0
authored
May 08, 2025
by
Vadim Markovtsev
Committed by
GitHub
May 08, 2025
Browse files
Improve exception reporting in MP engine (#17800)
Signed-off-by:
Vadim Markovtsev
<
vadim@poolside.ai
>
parent
7ea2adb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/engine/multiprocessing/engine.py
vllm/engine/multiprocessing/engine.py
+2
-2
No files found.
vllm/engine/multiprocessing/engine.py
View file @
b2da14a0
...
@@ -284,7 +284,7 @@ class MQLLMEngine:
...
@@ -284,7 +284,7 @@ class MQLLMEngine:
except
Exception
as
e
:
except
Exception
as
e
:
self
.
_set_errored
(
e
)
self
.
_set_errored
(
e
)
self
.
_send_unhealthy
(
e
)
self
.
_send_unhealthy
(
e
)
raise
e
raise
e
from
None
def
_handle_process_request
(
self
,
request
:
RPCProcessRequest
):
def
_handle_process_request
(
self
,
request
:
RPCProcessRequest
):
"""Handle RPCProcessRequest by adding it to the LLMEngine."""
"""Handle RPCProcessRequest by adding it to the LLMEngine."""
...
@@ -447,4 +447,4 @@ def run_mp_engine(vllm_config: VllmConfig, usage_context: UsageContext,
...
@@ -447,4 +447,4 @@ def run_mp_engine(vllm_config: VllmConfig, usage_context: UsageContext,
except
BaseException
as
e
:
except
BaseException
as
e
:
logger
.
exception
(
e
)
logger
.
exception
(
e
)
engine_alive
.
value
=
False
engine_alive
.
value
=
False
raise
e
raise
e
from
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