(context: string, cause: unknown)
| 1434 | error.name === "AbortError" || error.message.toLowerCase().includes("aborted"); |
| 1435 | |
| 1436 | const reportError = (context: string, cause: unknown) => { |
| 1437 | const error = toError(cause); |
| 1438 | if (closing && isAbortDuringClose(error)) return; |
| 1439 | console.error(`Executor MCP bridge ${context}: ${error.message}`); |
| 1440 | }; |
| 1441 | |
| 1442 | const forwardMessage = |
| 1443 | (send: (message: JSONRPCMessage) => Promise<void>, context: string) => |
no test coverage detected