Skip to content

Commit e3bce2e

Browse files
committed
fmt
1 parent 968dd5c commit e3bce2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

genkit-tools/telemetry-server/src/file-trace-store.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,10 @@ function stripTraceDetails(t?: TraceData): TraceData | undefined {
249249
if (!originalSpans[spanId].parentSpanId) {
250250
const { attributes: originalAttributes, ...restOfSpan } =
251251
originalSpans[spanId];
252-
spans[spanId] = { attributes: stripMedia(originalAttributes), ...restOfSpan } as SpanData;
252+
spans[spanId] = {
253+
attributes: stripMedia(originalAttributes),
254+
...restOfSpan,
255+
} as SpanData;
253256
break;
254257
}
255258
}

0 commit comments

Comments
 (0)