Skip to content

Commit ed66490

Browse files
committed
Remove addSpanProcessor call
1 parent 300cd66 commit ed66490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/utils/spanUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export function spanToJSON(span: Span): SpanJSON {
147147
// Handle a span from @opentelemetry/sdk-base-trace's `Span` class
148148
if (spanIsOpenTelemetrySdkTraceBaseSpan(span)) {
149149
const { attributes, startTime, name, endTime, status, links } = span;
150-
const parent_span_id = span.parentSpanContext?.spanId
150+
const parent_span_id = span.parentSpanContext?.spanId;
151151

152152
return dropUndefinedKeys({
153153
span_id,

0 commit comments

Comments
 (0)