diff --git a/crates/symbolicator-js/src/lookup.rs b/crates/symbolicator-js/src/lookup.rs index 3b36477dc..54398ff00 100644 --- a/crates/symbolicator-js/src/lookup.rs +++ b/crates/symbolicator-js/src/lookup.rs @@ -904,18 +904,6 @@ impl ArtifactFetcher { self.metrics.scraped_files += 1; - let span = sentry::configure_scope(|scope| scope.get_span()); - let ctx = sentry::TransactionContext::continue_from_span( - "scrape_js_file", - "scrape_js_file", - span, - ); - let transaction = sentry::start_transaction(ctx); - sentry::configure_scope(|scope| { - scope.set_span(Some(transaction.clone().into())); - scope.set_tag("host", host_string); - }); - // We add a hash with a timestamp to the `url` to make sure that we are busting caches // that are based on the `uri`. let timestamp = SystemTime::now() @@ -941,7 +929,6 @@ impl ArtifactFetcher { .fetch_file(&self.scope, remote_file, false) .await; - transaction.finish(); let entry = match scraped_file { Ok(contents) => { self.metrics.record_file_scraped(key.as_type());