Hello,
There is the issue with setting 'autocommit' to already released connection, when DELAYED_ACQUISITION_AND_RELEASE_AFTER_TRANSACTION is used.
See 2 methods method in LogicalConnectionManagedImpl: {code} @Override protected void afterCompletion() { afterTransaction();
resetConnection( initiallyAutoCommit ); initiallyAutoCommit = false; } {code}
(x) Connection is already released in afterTransaction() and then resetConnection() is called. |
|