MCPcopy Create free account
hub / github.com/adcontextprotocol/adcp / notifySystemError

Function notifySystemError

server/src/addie/error-notifier.ts:73–77  ·  view source on GitHub ↗
(ctx: SystemErrorContext)

Source from the content-addressed store, hash-verified

71 * Safe to call without awaiting — never throws.
72 */
73export function notifySystemError(ctx: SystemErrorContext): void {
74 void _postSystemError(ctx).catch((err) => {
75 logger.debug({ err, source: ctx.source }, 'Failed to post system error notification');
76 });
77}
78
79function pruneStaleEntries(now: number): void {
80 for (const [key, ts] of recentErrors) {

Callers 15

setupRoutesMethod · 0.85
startMethod · 0.85
notifyErrorChannelFunction · 0.85
handleUnroutedEmailFunction · 0.85
createWebhooksRouterFunction · 0.85
finalizePortraitFunction · 0.85
attachC2PAIfEnabledFunction · 0.85
runJobMethod · 0.85

Calls 1

_postSystemErrorFunction · 0.85

Tested by

no test coverage detected