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

Function ignoreClose

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

Source from the content-addressed store, hash-verified

104}
105
106const ignoreClose = (close: (() => Promise<void>) | undefined): Promise<void> =>
107 close
108 ? Effect.runPromise(Effect.ignore(Effect.tryPromise({ try: close, catch: () => undefined })))
109 : Promise.resolve();
110
111const formatBoundaryError = (error: unknown): unknown =>
112 // 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