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

Function resolveParentSpan

packages/hosts/mcp/src/tool-server.ts:1156–1159  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1154 });
1155
1156 const resolveParentSpan = (): Tracer.AnySpan | undefined => {
1157 const ps = config.parentSpan;
1158 return typeof ps === "function" ? ps() : ps;
1159 };
1160 const anchor = <A, EffE>(effect: Effect.Effect<A, EffE>): Effect.Effect<A, EffE> => {
1161 const parent = resolveParentSpan();
1162 return parent ? Effect.withParentSpan(effect, parent) : effect;

Callers 1

anchorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected