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
309d7aa4
Unverified
Commit
309d7aa4
authored
Sep 10, 2025
by
Chauncey
Committed by
GitHub
Sep 09, 2025
Browse files
[P/D] MultiConnector supports shutdown (#24425)
Signed-off-by:
chaunceyjiang
<
chaunceyjiang@gmail.com
>
parent
b4a01aaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
vllm/distributed/kv_transfer/kv_connector/v1/multi_connector.py
...istributed/kv_transfer/kv_connector/v1/multi_connector.py
+12
-0
No files found.
vllm/distributed/kv_transfer/kv_connector/v1/multi_connector.py
View file @
309d7aa4
...
@@ -88,6 +88,18 @@ class MultiConnector(KVConnectorBase_V1):
...
@@ -88,6 +88,18 @@ class MultiConnector(KVConnectorBase_V1):
for
c
in
self
.
_connectors
:
for
c
in
self
.
_connectors
:
c
.
clear_connector_metadata
()
c
.
clear_connector_metadata
()
def
shutdown
(
self
):
exception
:
Optional
[
Exception
]
=
None
for
c
in
self
.
_connectors
:
try
:
c
.
shutdown
()
except
Exception
as
e
:
logger
.
exception
(
"Exception during connector %s shutdown."
,
c
.
__class__
.
__name__
)
exception
=
e
if
exception
:
raise
exception
# ==============================
# ==============================
# Worker-side methods
# Worker-side methods
# ==============================
# ==============================
...
...
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