WIP run and setup

This commit is contained in:
Viktor Lofgren 2023-03-04 15:56:47 +01:00
parent c7014bbc92
commit 3b5002aac8

View File

@ -83,14 +83,14 @@ public class IndexServicesFactory {
}
public boolean isConvertedIndexMissing() {
return !Stream.of(
return Stream.of(
revIndexWords.get(LIVE_PART).toPath(),
revIndexDoc.get(LIVE_PART).toPath(),
revPrioIndexWords.get(LIVE_PART).toPath(),
revPrioIndexDoc.get(LIVE_PART).toPath(),
fwdIndexDocData.get(LIVE_PART).toPath(),
fwdIndexDocId.get(LIVE_PART).toPath()
).allMatch(Files::exists);
).noneMatch(Files::exists);
}
public void convertIndex(DomainRankings domainRankings) throws IOException {