MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / handleStdoutError

Function handleStdoutError

src/server/mcp-lifecycle.ts:345–351  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

343 void coordinator.shutdown('stdin-close');
344 };
345 const handleStdoutError = (error: unknown): void => {
346 if (!isBrokenPipeLikeError(error)) {
347 return;
348 }
349 suppressProcessStdioWrites();
350 void coordinator.shutdown('stdout-error', error);
351 };
352 const handleStderrError = (error: unknown): void => {
353 if (!isBrokenPipeLikeError(error)) {
354 return;

Callers

nothing calls this directly

Calls 3

isBrokenPipeLikeErrorFunction · 0.85
shutdownMethod · 0.65

Tested by

no test coverage detected