-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: AsyncTransactionManager did not always close the session (#3580)
In a case where the following happens, the session that was used by an AsyncTransactionManager would not be returned to the pool: 1. The transaction is abandoned without a Commit or Rollback call. 2. The AsyncTransactionManager then executes a RollbackAsync internally. 3. If the internal RollbackAsync failed, then the session would not be closed.
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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