We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1db7e4 commit 9ab3f61Copy full SHA for 9ab3f61
vllm/distributed/kv_transfer/kv_connector/v1/multi_connector.py
@@ -88,6 +88,18 @@ def clear_connector_metadata(self) -> None:
88
for c in self._connectors:
89
c.clear_connector_metadata()
90
91
+ def shutdown(self):
92
+ exception: Optional[Exception] = None
93
+ for c in self._connectors:
94
+ try:
95
+ c.shutdown()
96
+ except Exception as e:
97
+ logger.exception("Exception during connector %s shutdown.",
98
+ c.__class__.__name__)
99
+ exception = e
100
+ if exception:
101
+ raise exception
102
+
103
# ==============================
104
# Worker-side methods
105
0 commit comments