Skip to content

Commit

Permalink
NUTCH-3072 Fetcher to stop QueueFeeder if aborting with "hung threads"
Browse files Browse the repository at this point in the history
- fix typo in counter name
  • Loading branch information
sebastian-nagel committed Nov 30, 2024
1 parent 1ae0a11 commit 44e9041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/org/apache/nutch/fetcher/QueueFeeder.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void run() {
LOG.info("QueueFeeder stopping, timelimit exceeded.");
}
queuingStatus[qstatus]++;
context.getCounter("FetcherStatus", "hitByTimelimit").increment(1);
context.getCounter("FetcherStatus", "hitByTimeLimit").increment(1);
}
try {
hasMore = context.nextKeyValue();
Expand Down

0 comments on commit 44e9041

Please sign in to comment.