Skip to content
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

Merged
merged 3 commits into from
May 8, 2024
Merged

Conversation

gem-neo4j
Copy link
Contributor

Reports that the file is being reported as in use after the procedure has been used.

Copy link
Contributor

@loveleif loveleif left a 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();
Copy link
Contributor

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.

@gem-neo4j gem-neo4j force-pushed the dev_close_resources branch from 986562f to ec0f821 Compare May 8, 2024 09:24
@@ -337,6 +337,7 @@ public long parseXML(Reader input, TerminationGuard terminationGuard) throws XML
throw e;
} finally {
tx.close();
reader.close();
Copy link
Contributor

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).

Copy link
Contributor Author

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?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds fine :).

@gem-neo4j gem-neo4j merged commit 27c604c into dev May 8, 2024
20 checks passed
@gem-neo4j gem-neo4j deleted the dev_close_resources branch May 8, 2024 13:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants