We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f545eff commit c313ba2Copy full SHA for c313ba2
opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java
@@ -572,7 +572,8 @@ public static String[] parseOptions(String[] argv) throws ParseException {
572
573
parser.on("--historyFileThreads", "=number", Integer.class,
574
"The number of threads to use for history cache generation when dealing with individual files.",
575
- "By default the number of threads will be set to the number of available CPUs.").execute(threadCount ->
+ "By default the number of threads will be set to the number of available CPUs.",
576
+ "Assumes -H/--history.").execute(threadCount ->
577
cfg.setHistoryFileParallelism((Integer) threadCount));
578
579
parser.on("-I", "--include", "=pattern",
0 commit comments