File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/index Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -566,8 +566,9 @@ public static String[] parseOptions(String[] argv) throws ParseException {
566566 parser .on ("-H" , "--history" , "Enable history." ).execute (v -> cfg .setHistoryEnabled (true ));
567567
568568 parser .on ("--historyThreads" , "=number" , Integer .class ,
569- "The number of threads to use for history cache generation. By default the number" ,
570- "of threads will be set to the number of available CPUs. Assumes -H/--history." ).execute (threadCount ->
569+ "The number of threads to use for history cache generation on repository level. " +
570+ "By default the number of threads will be set to the number of available CPUs." ,
571+ "Assumes -H/--history." ).execute (threadCount ->
571572 cfg .setHistoryParallelism ((Integer ) threadCount ));
572573
573574 parser .on ("--historyFileThreads" , "=number" , Integer .class ,
You can’t perform that action at this time.
0 commit comments