HHH-6247 - Log (warn) inability for EM to join transaction only when user explicitly asked for join
This commit is contained in:
parent
c88cdaff96
commit
4f1bee1727
|
@ -167,7 +167,7 @@ public abstract class AbstractEntityManagerImpl implements HibernateEntityManage
|
||||||
protected void postInit() {
|
protected void postInit() {
|
||||||
//register in Sync if needed
|
//register in Sync if needed
|
||||||
if ( PersistenceUnitTransactionType.JTA.equals( transactionType ) ) {
|
if ( PersistenceUnitTransactionType.JTA.equals( transactionType ) ) {
|
||||||
joinTransaction( true );
|
joinTransaction( false );
|
||||||
}
|
}
|
||||||
|
|
||||||
setDefaultProperties();
|
setDefaultProperties();
|
||||||
|
@ -1147,7 +1147,7 @@ public abstract class AbstractEntityManagerImpl implements HibernateEntityManage
|
||||||
if( !isOpen() ){
|
if( !isOpen() ){
|
||||||
throw new IllegalStateException( "EntityManager is closed" );
|
throw new IllegalStateException( "EntityManager is closed" );
|
||||||
}
|
}
|
||||||
joinTransaction( false );
|
joinTransaction( true );
|
||||||
}
|
}
|
||||||
|
|
||||||
public <T> T unwrap(Class<T> clazz) {
|
public <T> T unwrap(Class<T> clazz) {
|
||||||
|
|
Loading…
Reference in New Issue