Skip to content

Commit 3a56757

Browse files
committed
Remove addSpanProcessor call
1 parent eb925f5 commit 3a56757

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 dropUndefinedKeys({
153153
span_id,

packages/opentelemetry/test/helpers/createSpan.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { SpanContext, TimeInput } from '@opentelemetry/api';
1+
import type { TimeInput } from '@opentelemetry/api';
22
import { context, trace, SpanKind } from '@opentelemetry/api';
33
import type { SpanProcessor } from '@opentelemetry/sdk-trace-node';
44
import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';

0 commit comments

Comments
 (0)