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 e3513ef commit 9db9fb8Copy full SHA for 9db9fb8
packages/bundler-plugin-core/src/build-plugin-manager.ts
@@ -291,11 +291,9 @@ export function createSentryBuildPluginManager(
291
logger.info(
292
"Sending telemetry data on issues and performance to Sentry. To disable telemetry, set `options.telemetry` to `false`."
293
);
294
- startInactiveSpan({
295
- name: "Sentry Bundler Plugin execution",
296
- forceTransaction: true,
297
- scope: sentryScope,
298
- }).end();
+ startSpan({ name: "Sentry Bundler Plugin execution", scope: sentryScope }, () => {
+ //
+ });
299
await safeFlushTelemetry(sentryClient);
300
}
301
},
0 commit comments