Remove Tags from tracing (#2704)

Oops, these show in `tracing` now, and they're huge.
This commit is contained in:
Charlie Marsh 2024-03-27 22:18:54 -04:00 committed by GitHub
parent 4cc91cc6bb
commit f8f7f848f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,7 +86,7 @@ impl<'a, Context: BuildContext + Send + Sync> DistributionDatabase<'a, Context>
///
/// If `no_remote_wheel` is set, the wheel will be built from a source distribution
/// even if compatible pre-built wheels are available.
#[instrument(skip(self))]
#[instrument(skip_all, fields(%dist))]
pub async fn get_or_build_wheel(&self, dist: &Dist, tags: &Tags) -> Result<LocalWheel, Error> {
match dist {
Dist::Built(built) => self.get_wheel(built).await,