fix: accidential wide span in tests (#6772)

introduced in a PR without other #[tracing::instrument] changes.
This commit is contained in:
Joonas Koivunen
2024-02-15 15:48:44 +02:00
committed by GitHub
parent 1af047dd3e
commit 936f2ee2a5

View File

@@ -3276,7 +3276,7 @@ impl Tenant {
/// For unit tests, make this visible so that other modules can directly create timelines
#[cfg(test)]
#[tracing::instrument(fields(tenant_id=%self.tenant_shard_id.tenant_id, shard_id=%self.tenant_shard_id.shard_slug(), %timeline_id))]
#[tracing::instrument(skip_all, fields(tenant_id=%self.tenant_shard_id.tenant_id, shard_id=%self.tenant_shard_id.shard_slug(), %timeline_id))]
pub(crate) async fn bootstrap_timeline_test(
&self,
timeline_id: TimelineId,