Github user milleruntime commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/159#discussion_r84743890
--- Diff: core/src/main/java/org/apache/accumulo/core/file/rfile/RFile.java
---
@@ -1193,16 +1192,14 @@ public void close() throws IOException {
if (sampleReaders != null) {
for (LocalityGroupReader lgr : sampleReaders) {
- try {
- lgr.close();
- } catch (IOException e) {
- log.warn("Errored out attempting to close
LocalityGroupReader.", e);
- }
+ lgr.close();
}
}
try {
reader.close();
+ } catch (IOException e) {
+ throw new RuntimeException(e);
--- End diff --
Fixed in 5aa4a99a30052c1560d46d3430886d9e5e650d61. Want me to create a
ticket to utilize `UncheckedIOException` everywhere in the code for this
situation?
---
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 [email protected] or file a JIRA ticket
with INFRA.
---