mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-01-08 20:44:30 +01:00
Fix uselessly deep stack trace
This commit is contained in:
parent
34f4602ae8
commit
28cc6df7a3
@ -180,13 +180,16 @@ impl FacetsUpdateIncrementalInner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.find_touched_parents(
|
if !touched_parents.is_empty() {
|
||||||
wtxn,
|
self.find_touched_parents(
|
||||||
parent_level,
|
wtxn,
|
||||||
touched_parents
|
parent_level,
|
||||||
// no need to `rev` here because the parents were already visited in reverse order
|
touched_parents
|
||||||
.into_iter(),
|
// no need to `rev` here because the parents were already visited in reverse order
|
||||||
)
|
.into_iter(),
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn compute_parent_group(
|
fn compute_parent_group(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user