mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-09 08:21:50 +00:00
fix(mcp): widen shutdown_mcp_servers exception guard to BaseException
This commit is contained in:
parent
25742372eb
commit
e9529578d5
1 changed files with 1 additions and 1 deletions
|
|
@ -3800,7 +3800,7 @@ def shutdown_mcp_servers():
|
|||
if future is not None:
|
||||
try:
|
||||
future.result(timeout=15)
|
||||
except Exception as exc:
|
||||
except BaseException as exc:
|
||||
logger.debug("Error during MCP shutdown: %s", exc)
|
||||
|
||||
_stop_mcp_loop()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue