Skip to content

Commit 32a07ec

Browse files
idodeclareVladimir Kotal
authored andcommitted
Fix log suffix to read "linkages"
1 parent 50065c9 commit 32a07ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
/*
21-
* Copyright (c) 2017-2018, Chris Fraire <[email protected]>.
21+
* Copyright (c) 2017-2019, Chris Fraire <[email protected]>.
2222
*/
2323

2424
package org.opengrok.indexer.index;
@@ -319,7 +319,7 @@ private int completeLinkages() throws IOException {
319319
f.getTargetRelPath())).collect(Collectors.toList());
320320

321321
Map<Boolean, List<PendingSymlinkageExec>> bySuccess;
322-
try (Progress progress = new Progress(LOGGER, "pending renames", numPending)) {
322+
try (Progress progress = new Progress(LOGGER, "pending linkages", numPending)) {
323323
bySuccess = pendingExecs.parallelStream().collect(
324324
Collectors.groupingByConcurrent((x) -> {
325325
progress.increment();

0 commit comments

Comments
 (0)