MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / ignoreClose

Function ignoreClose

packages/hosts/mcp/src/in-memory-session-store.ts:111–114  ·  view source on GitHub ↗
(close: (() => Promise<void>) | undefined)

Source from the content-addressed store, hash-verified

109}
110
111const ignoreClose = (close: (() => Promise<void>) | undefined): Promise<void> =>
112 close
113 ? Effect.runPromise(Effect.ignore(Effect.tryPromise({ try: close, catch: () => undefined })))
114 : Promise.resolve();
115
116const formatBoundaryError = (error: unknown): unknown =>
117 // oxlint-disable-next-line executor/no-instanceof-error, executor/no-unknown-error-message -- boundary: log unknown MCP SDK/runtime failures

Callers 2

disposeFunction · 0.70
createFunction · 0.70

Calls 1

resolveMethod · 0.80

Tested by

no test coverage detected