mirror of https://github.com/apache/lucene.git
SOLR-4870: RecentUpdates.update() does not increment numUpdates loop counter
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1487897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e08b852a7d
commit
2c1af23df7
|
@ -209,6 +209,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-4867: Admin UI - setting loglevel on root throws RangeError (steffkes)
|
||||
|
||||
* SOLR-4870: RecentUpdates.update() does not increment numUpdates loop counter
|
||||
(Alexey Kudinov via shalin)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -968,6 +968,8 @@ public class UpdateLog implements PluginInfoInitialized {
|
|||
log.warn("Exception reverse reading log", ex);
|
||||
break;
|
||||
}
|
||||
|
||||
numUpdates++;
|
||||
}
|
||||
|
||||
} catch (IOException e) {
|
||||
|
|
Loading…
Reference in New Issue