Skip to content

Commit

Permalink
chore: update CliApp
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemDoum committed Dec 10, 2024
1 parent 4a18492 commit 6c6b2de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datashare-app/src/main/java/org/icij/datashare/CliApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import org.icij.datashare.tasks.IndexTask;
import org.icij.datashare.tasks.ScanIndexTask;
import org.icij.datashare.tasks.ScanTask;
import org.icij.datashare.tasks.DatashareTaskFactory;
import org.icij.datashare.text.indexing.Indexer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -128,8 +129,7 @@ private static void runTaskWorker(CommonMode mode, Properties properties) throws
}

if (pipeline.has(Stage.CREATENLPBATCHESFROMIDX)) {
taskManager.startTask(
new Task<>(CreateNlpBatchesFromIndex.class.getName(), nullUser(), propertiesToMap(properties)));
taskManager.startTask(new Task<>(CreateNlpBatchesFromIndex.class.getName(), nullUser(), propertiesToMap(properties)));
}

if (pipeline.has(Stage.BATCHNLP)) {
Expand Down

0 comments on commit 6c6b2de

Please sign in to comment.