docs: fix bug in transaction example#3414
Merged
brianc merged 1 commit intobrianc:masterfrom Apr 1, 2025
Merged
Conversation
Throwing error will not allow "finally" execution, so client.release() must be invoked before it.
Owner
|
ah you're totally right - sorry about that! |
Owner
|
rerunning the failed job - sometimes tests timeout depending on infra issues...sucks but since some of the tests actually test timeouts its a bit of a catch-22 to try & fix (unless it happens regularly) |
Owner
|
badda boom! ty! |
Collaborator
|
charmander
added a commit
that referenced
this pull request
Apr 3, 2025
This reverts commit dcb4257. The change doesn’t fix the bug it claims to (`finally` always runs) and introduces a resource leak if the `ROLLBACK` query fails. The related bug that a broken client can be returned to the pool remains unaffected either way.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Throwing error will not allow "finally" execution, so client.release() must be invoked before it.
Here a very simple example of JS behaviour:
I know this is an easy catch for experienced js developers, nevertheless i'm afraid providing this bugged example will cause (and caused) a lot of subtle bugs into beginners code.