Skip to content

Commit 22f5a1b

Browse files
committed
be more specific with imports
1 parent f36f74d commit 22f5a1b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

packages/core/src/asyncContext/stackStrategy.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { getDefaultCurrentScope, getDefaultIsolationScope } from '../defaultScop
22
import { Scope } from '../scope';
33
import type { Client, Scope as ScopeInterface } from '../types-hoist';
44
import { isThenable } from '../utils-hoist/is';
5-
65
import { getMainCarrier, getSentryCarrier } from './../carrier';
76
import type { AsyncContextStrategy } from './types';
87

packages/core/src/tracing/sentryNonRecordingSpan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77
SpanStatus,
88
SpanTimeInput,
99
} from '../types-hoist';
10-
import { generateSpanId, generateTraceId } from '../utils-hoist';
10+
import { generateSpanId, generateTraceId } from '../utils-hoist/propagationContext';
1111
import { TRACE_FLAG_NONE } from '../utils/spanUtils';
1212

1313
/**

packages/core/src/tracing/sentrySpan.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import {
1212
import type {
1313
SentrySpanArguments,
1414
Span,
15-
SpanAttributeValue,
1615
SpanAttributes,
16+
SpanAttributeValue,
1717
SpanContextData,
1818
SpanEnvelope,
1919
SpanJSON,
@@ -24,19 +24,19 @@ import type {
2424
TransactionEvent,
2525
TransactionSource,
2626
} from '../types-hoist';
27-
import { generateSpanId, generateTraceId } from '../utils-hoist/propagationContext';
2827
import { logger } from '../utils-hoist/logger';
2928
import { dropUndefinedKeys } from '../utils-hoist/object';
29+
import { generateSpanId, generateTraceId } from '../utils-hoist/propagationContext';
3030
import { timestampInSeconds } from '../utils-hoist/time';
3131
import {
32-
TRACE_FLAG_NONE,
33-
TRACE_FLAG_SAMPLED,
3432
getRootSpan,
3533
getSpanDescendants,
3634
getStatusMessage,
3735
spanTimeInputToSeconds,
3836
spanToJSON,
3937
spanToTransactionTraceContext,
38+
TRACE_FLAG_NONE,
39+
TRACE_FLAG_SAMPLED,
4040
} from '../utils/spanUtils';
4141
import { getDynamicSamplingContextFromSpan } from './dynamicSamplingContext';
4242
import { logSpanEnd } from './logSpans';

0 commit comments

Comments
 (0)