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