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:
Shalin Shekhar Mangar 2013-05-30 15:34:21 +00:00
parent e08b852a7d
commit 2c1af23df7
2 changed files with 5 additions and 0 deletions

View File

@ -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
----------------------

View File

@ -968,6 +968,8 @@ public class UpdateLog implements PluginInfoInitialized {
log.warn("Exception reverse reading log", ex);
break;
}
numUpdates++;
}
} catch (IOException e) {