MCPcopy Create free account
hub / github.com/apache/maka / runtimeOwnerCleanupFailure

Function runtimeOwnerCleanupFailure

packages/runtime/src/runtime-kernel.ts:3749–3756  ·  view source on GitHub ↗
(message: string, error: unknown)

Source from the content-addressed store, hash-verified

3747}
3748
3749function runtimeOwnerCleanupFailure(message: string, error: unknown): Error {
3750 return error instanceof RuntimeOwnerCleanupError ||
3751 error instanceof RuntimeMessageAuthorityInvariantError ||
3752 error instanceof RuntimeInteractionInvariantError ||
3753 error instanceof RuntimeInteractionFailStopError
3754 ? error
3755 : new RuntimeOwnerCleanupError(message, error);
3756}
3757
3758function containsRuntimeOwnerCleanupFailure(error: unknown): boolean {
3759 if (

Callers 5

cleanupRunExecutionMethod · 0.85
stopSessionAttemptMethod · 0.85
advanceStopOperationMethod · 0.85
releaseMessageMethod · 0.85
finalizeOwnedRunMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected