Skip to content

Commit 057b073

Browse files
Vladimir Kotalahornace
authored andcommitted
adjust the existing message to better explain what it does
1 parent c313ba2 commit 057b073

File tree

1 file changed

+3
-2
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/index

1 file changed

+3
-2
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)