Skip to content

Commit 6e71cde

Browse files
committed
be more specific with imports
1 parent dd34dfb commit 6e71cde

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/core/src/asyncContext/stackStrategy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getDefaultCurrentScope, getDefaultIsolationScope } from '../defaultScop
22
import { Scope } from '../scope';
33
import type { Client, Scope as ScopeInterface } from '../types-hoist';
44

5-
import { isThenable } from '../utils-hoist';
5+
import { isThenable } from '../utils-hoist/is';
66
import { getMainCarrier, getSentryCarrier } from './../carrier';
77
import type { AsyncContextStrategy } from './types';
88

packages/core/src/tracing/measurement.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_VALUE,
55
} from '../semanticAttributes';
66
import type { MeasurementUnit, Measurements, TimedEvent } from '../types-hoist';
7-
import { logger } from '../utils-hoist';
7+
import { logger } from '../utils-hoist/logger';
88
import { getActiveSpan, getRootSpan } from '../utils/spanUtils';
99

1010
/**

packages/core/src/tracing/sentryNonRecordingSpan.ts

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
2626
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
2727
} from '../semanticAttributes';
28-
import { generateSpanId, generateTraceId } from '../utils-hoist';
28+
import { generateSpanId, generateTraceId } from '../utils-hoist/propagationContext';
2929
import { logger } from '../utils-hoist/logger';
3030
import { dropUndefinedKeys } from '../utils-hoist/object';
3131
import { timestampInSeconds } from '../utils-hoist/time';

packages/core/src/utils/applyScopeDataToEvent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getDynamicSamplingContextFromSpan } from '../tracing/dynamicSamplingContext';
22
import type { Breadcrumb, Event, ScopeData, Span } from '../types-hoist';
3-
import { dropUndefinedKeys } from '../utils-hoist';
3+
import { dropUndefinedKeys } from '../utils-hoist/object';
44
import { merge } from './merge';
55
import { getRootSpan, spanToJSON, spanToTraceContext } from './spanUtils';
66

0 commit comments

Comments
 (0)