Meilisearch: fix some wrong spans

This commit is contained in:
Louis Dureuil
2024-02-26 16:38:17 +01:00
parent 6862caef64
commit b11df7ec34
3 changed files with 3 additions and 4 deletions

View File

@ -210,8 +210,7 @@ fn run_extraction_task<FE, FS, M>(
let current_span = tracing::Span::current();
rayon::spawn(move || {
let child_span =
tracing::trace_span!(target: "", parent: &current_span, "extract_multiple_chunks");
let child_span = tracing::trace_span!(target: "indexing::extract::details", parent: &current_span, "extract_multiple_chunks");
let _entered = child_span.enter();
puffin::profile_scope!("extract_multiple_chunks", name);
match extract_fn(chunk, indexer) {