Skip to content

Commit

Permalink
refresh param to bulk not working, closes #614.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Jan 9, 2011
1 parent 373af6b commit d650705
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -255,15 +255,15 @@ public class RobinEngine extends AbstractIndexShardComponent implements Engine,
break;
}
}
if (bulk.refresh()) {
try {
refresh(new Refresh(false));
} catch (Exception e) {
//ignore
}
}
}
dirty = true;
if (bulk.refresh()) {
try {
refresh(new Refresh(false));
} catch (Exception e) {
//ignore
}
}
} finally {
rwl.readLock().unlock();
}
Expand Down

0 comments on commit d650705

Please sign in to comment.