remove bad error handling

This commit is contained in:
ssalbdivad
2025-10-09 17:53:22 -04:00
parent d6bc0fdd64
commit 008021df1c
3 changed files with 2 additions and 23 deletions
-7
View File
@@ -25858,13 +25858,6 @@ function processJSONChunk(chunk, agent) {
]
])
);
if (parsedChunk.mcp_servers?.length > 0) {
const failedServers = parsedChunk.mcp_servers.filter((server) => server.status === "failed");
if (failedServers.length > 0) {
const failedNames = failedServers.map((server) => server.name).join(", ");
throw new Error(`MCP servers failed to start: ${failedNames}. This indicates a configuration or environment issue that prevents GitHub integration from working.`);
}
}
}
break;
case "assistant":