mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 16:06:31 +00:00 
			
		
		
		
	Fix uselessly deep stack trace
This commit is contained in:
		| @@ -180,13 +180,16 @@ impl FacetsUpdateIncrementalInner { | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|         self.find_touched_parents( | ||||
|             wtxn, | ||||
|             parent_level, | ||||
|             touched_parents | ||||
|                 // no need to `rev` here because the parents were already visited in reverse order | ||||
|                 .into_iter(), | ||||
|         ) | ||||
|         if !touched_parents.is_empty() { | ||||
|             self.find_touched_parents( | ||||
|                 wtxn, | ||||
|                 parent_level, | ||||
|                 touched_parents | ||||
|                     // no need to `rev` here because the parents were already visited in reverse order | ||||
|                     .into_iter(), | ||||
|             )?; | ||||
|         } | ||||
|         Ok(()) | ||||
|     } | ||||
|  | ||||
|     fn compute_parent_group( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user