(context: string, cause: unknown)
| 1413 | error.name === "AbortError" || error.message.toLowerCase().includes("aborted"); |
| 1414 | |
| 1415 | const reportError = (context: string, cause: unknown) => { |
| 1416 | const error = toError(cause); |
| 1417 | if (closing && isAbortDuringClose(error)) return; |
| 1418 | console.error(`Executor MCP bridge ${context}: ${error.message}`); |
| 1419 | }; |
| 1420 | |
| 1421 | const forwardMessage = |
| 1422 | (send: (message: JSONRPCMessage) => Promise<void>, context: string) => |
no test coverage detected