mcp: fix status() to not overwrite connected with failed (#3514)

This commit is contained in:
kcrommett
2025-10-28 14:16:03 -07:00
committed by GitHub
parent 46ad456718
commit 5cc37c4ea0

View File

@@ -188,6 +188,7 @@ export namespace MCP {
}
if (state.clients[key]) {
result[key] = "connected"
continue
}
result[key] = "failed"
}