We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968dd5c commit e3bce2eCopy full SHA for e3bce2e
genkit-tools/telemetry-server/src/file-trace-store.ts
@@ -249,7 +249,10 @@ function stripTraceDetails(t?: TraceData): TraceData | undefined {
249
if (!originalSpans[spanId].parentSpanId) {
250
const { attributes: originalAttributes, ...restOfSpan } =
251
originalSpans[spanId];
252
- spans[spanId] = { attributes: stripMedia(originalAttributes), ...restOfSpan } as SpanData;
+ spans[spanId] = {
253
+ attributes: stripMedia(originalAttributes),
254
+ ...restOfSpan,
255
+ } as SpanData;
256
break;
257
}
258
0 commit comments