Skip to content

Commit 9db9fb8

Browse files
committed
fix?
1 parent e3513ef commit 9db9fb8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

packages/bundler-plugin-core/src/build-plugin-manager.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,9 @@ export function createSentryBuildPluginManager(
291291
logger.info(
292292
"Sending telemetry data on issues and performance to Sentry. To disable telemetry, set `options.telemetry` to `false`."
293293
);
294-
startInactiveSpan({
295-
name: "Sentry Bundler Plugin execution",
296-
forceTransaction: true,
297-
scope: sentryScope,
298-
}).end();
294+
startSpan({ name: "Sentry Bundler Plugin execution", scope: sentryScope }, () => {
295+
//
296+
});
299297
await safeFlushTelemetry(sentryClient);
300298
}
301299
},

0 commit comments

Comments
 (0)