Github user ctubbsii commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/159#discussion_r83740194
  
    --- Diff: 
core/src/main/java/org/apache/accumulo/core/iterators/system/SourceSwitchingIterator.java
 ---
    @@ -162,6 +162,14 @@ private void readNext(boolean initialSeek) throws 
IOException {
       private boolean switchSource() throws IOException {
         if (!source.isCurrent()) {
           source = source.getNewDataSource();
    +      // if our source actually changed, then attempt to close the 
previous iterator
    +      try {
    +        if (iter != null) {
    +          iter.close();
    +        }
    +      } catch (Exception e) {
    +        throw new IOException(e);
    --- End diff --
    
    This is a private method. Do we need to wrap exceptions here, or should we 
handle it in the caller? It seems we might be converting them to IOExceptions 
here, only to have them converted back to RuntimeExceptions later.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to