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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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