Update pageserver/src/tenant/secondary/downloader.rs

Co-authored-by: Christian Schwarz <christian@neon.tech>
This commit is contained in:
John Spray
2023-12-20 16:09:05 +00:00
committed by GitHub
parent 3cde0e7aad
commit a57116e92b

View File

@@ -380,7 +380,7 @@ impl JobGenerator<PendingDownload, RunningDownload, CompleteDownload, DownloadCo
completed_at: Instant::now(),
})
.ok();
}.instrument(info_span!("secondary_download", tenant_id=%tenant_shard_id.tenant_id, shard_id=%tenant_shard_id.shard_slug())));
}.instrument(info_span!(parent: None, "secondary_download", tenant_id=%tenant_shard_id.tenant_id, shard_id=%tenant_shard_id.shard_slug())));
RunningDownload { barrier }
}
}