(context: string, cause: unknown)
| 1442 | error.name === "AbortError" || error.message.toLowerCase().includes("aborted"); |
| 1443 | |
| 1444 | const reportError = (context: string, cause: unknown) => { |
| 1445 | const error = toError(cause); |
| 1446 | if (closing && isAbortDuringClose(error)) return; |
| 1447 | console.error(`Executor MCP bridge ${context}: ${error.message}`); |
| 1448 | }; |
| 1449 | |
| 1450 | const forwardMessage = |
| 1451 | (send: (message: JSONRPCMessage) => Promise<void>, context: string) => |
no test coverage detected