Skip to content

Commit 006234a

Browse files
committed
Remove addSpanProcessor call
1 parent 5450f1c commit 006234a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/utils/spanUtils.ts

+1-1
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 {
153153
span_id,

0 commit comments

Comments
 (0)