(context: string, cause: unknown)
| 1379 | error.name === "AbortError" || error.message.toLowerCase().includes("aborted"); |
| 1380 | |
| 1381 | const reportError = (context: string, cause: unknown) => { |
| 1382 | const error = toError(cause); |
| 1383 | if (closing && isAbortDuringClose(error)) return; |
| 1384 | console.error(`Executor MCP bridge ${context}: ${error.message}`); |
| 1385 | }; |
| 1386 | |
| 1387 | const forwardMessage = |
| 1388 | (send: (message: JSONRPCMessage) => Promise<void>, context: string) => |
no test coverage detected