Skip to content

Commit 75d687b

Browse files
committed
fix build error
1 parent b470df9 commit 75d687b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/core/src/utils/spanUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { getCapturedScopesOnSpan } from '../tracing/utils';
1515
import type { TraceContext } from '../types-hoist/context';
1616
import type { SpanLink, SpanLinkJSON } from '../types-hoist/link';
1717
import type {
18-
SerializedSpan,
18+
SerializedStreamedSpan,
1919
Span,
2020
SpanAttributes,
2121
SpanJSON,
@@ -267,7 +267,7 @@ function getOtelParentSpanId(span: OpenTelemetrySdkTraceBaseSpan): string | unde
267267
* This is the final serialized span format that is sent to Sentry.
268268
* The returned serilaized spans must not be consumed by users or SDK integrations.
269269
*/
270-
export function streamedSpanJsonToSerializedSpan(spanJson: StreamedSpanJSON): SerializedSpan {
270+
export function streamedSpanJsonToSerializedSpan(spanJson: StreamedSpanJSON): SerializedStreamedSpan {
271271
return {
272272
...spanJson,
273273
attributes: serializeAttributes(spanJson.attributes),

0 commit comments

Comments
 (0)