We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69948b commit 0740673Copy full SHA for 0740673
packages/core/src/tracing/utils.ts
@@ -52,6 +52,8 @@ export function setCapturedScopesOnSpan(span: Span | undefined, scope: Scope, is
52
if (span) {
53
addNonEnumerableProperty(span, ISOLATION_SCOPE_ON_START_SPAN_FIELD, wrapScopeWithWeakRef(isolationScope));
54
addNonEnumerableProperty(span, SCOPE_ON_START_SPAN_FIELD, wrapScopeWithWeakRef(scope));
55
+ // Testing
56
+ setTimeout(() => [scope, isolationScope], 10_000); // keep this reference around for at least 10s
57
}
58
59
0 commit comments