Skip to content

Commit

Permalink
search-api: Call reindexing of concepts when standalone indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
jnatten committed Jan 21, 2025
1 parent 3d1d8be commit d437b2d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ class StandaloneIndexing(props: SearchApiProperties, componentRegistry: Componen
Seq(
reindexWithIndexService(componentRegistry.learningPathIndexService, shouldUsePublishedTax = true),
reindexWithIndexService(componentRegistry.articleIndexService, shouldUsePublishedTax = true),
reindexWithIndexService(componentRegistry.draftIndexService, shouldUsePublishedTax = false)
reindexWithIndexService(componentRegistry.draftIndexService, shouldUsePublishedTax = false),
reindexWithIndexService(componentRegistry.draftConceptIndexService, shouldUsePublishedTax = true)
)
),
Duration.Inf
Expand Down

0 comments on commit d437b2d

Please sign in to comment.