Skip to content

Commit

Permalink
SOLR-3658: fix deletes as well of course
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/branch_4x@1368999 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markrmiller committed Aug 3, 2012
1 parent cb82a1d commit 6eec683
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ boolean flushDeletes(int limit) {
Set<Node> nodes = deletes.keySet();
for (Node node : nodes) {
List<DeleteRequest> dlist = deletes.get(node);
if (dlist == null || dlist.size() < limit) return false;
if (dlist == null || dlist.size() < limit) continue;
UpdateRequestExt ureq = new UpdateRequestExt();

ModifiableSolrParams combinedParams = new ModifiableSolrParams();
Expand Down

0 comments on commit 6eec683

Please sign in to comment.