-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NOID] Close resources for open readers #620
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -336,6 +336,7 @@ public long parseXML(Reader input, TerminationGuard terminationGuard) throws XML | |||
tx.rollback(); | |||
throw e; | |||
} finally { | |||
reader.close(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this call throws an exception we will not call tx.close()
. Might not be an issue in this case though, if I remember correctly transactions are closed on commit/rollback anyway.
986562f
to
ec0f821
Compare
@@ -337,6 +337,7 @@ public long parseXML(Reader input, TerminationGuard terminationGuard) throws XML | |||
throw e; | |||
} finally { | |||
tx.close(); | |||
reader.close(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If tx.close()
fails (and I believe it can under certain circumstances) we won't close the reader now. You can avoid this by using try with resources (try (final var reader = ...) {
), or using something like IOUtils.closeAll
(from mono repo).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This reader isn't auto closeable which is why I didn't wrap it in the try, it is just freeing up resources (not closing the file, which I made a part of a try with resources already), maybe it is fine?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds fine :).
Reports that the file is being reported as in use after the procedure has been used.