Merge remote-tracking branch 'upstream/main' into wip/6.0
This commit is contained in:
commit
d4c296b732
|
@ -28,7 +28,7 @@ ext {
|
|||
jakartaWeldVersion = '4.0.1.SP1'
|
||||
|
||||
javassistVersion = '3.27.0-GA'
|
||||
byteBuddyVersion = '1.11.8'
|
||||
byteBuddyVersion = '1.11.12'
|
||||
|
||||
agroalVersion = '1.9'
|
||||
|
||||
|
|
|
@ -247,8 +247,9 @@ public class JdbcCoordinatorImpl implements JdbcCoordinator {
|
|||
|
||||
@Override
|
||||
public void afterStatementExecution() {
|
||||
LOG.tracev( "Starting after statement execution processing [{0}]", getConnectionReleaseMode() );
|
||||
if ( getConnectionReleaseMode() == ConnectionReleaseMode.AFTER_STATEMENT ) {
|
||||
final ConnectionReleaseMode connectionReleaseMode = getConnectionReleaseMode();
|
||||
LOG.tracev( "Starting after statement execution processing [{0}]", connectionReleaseMode );
|
||||
if ( connectionReleaseMode == ConnectionReleaseMode.AFTER_STATEMENT ) {
|
||||
if ( ! releasesEnabled ) {
|
||||
LOG.debug( "Skipping aggressive release due to manual disabling" );
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue