We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f58aaf9 commit 0878078Copy full SHA for 0878078
klass-api/src/main/java/no/ssb/klass/api/services/search/SearchIndexPopulator.java
@@ -32,7 +32,7 @@ public class SearchIndexPopulator implements CommandLineRunner {
32
public void run(String... args) {
33
CompletableFuture.runAsync(() -> {
34
List<Long> ids = classificationSeriesRepository.findAllClassificationIds();
35
- List<Long> testIds = ids.stream().limit(5).toList();
+ List<Long> testIds = ids.stream().limit(1).toList();
36
log.info("Starting to index {} classifications", ids.size());
37
testIds.forEach(searchService::indexAsync);
38
log.info("Finished indexing for {} classifications", ids.size());
0 commit comments