HHH-18491 Do no try to resume non-existant transaction in doInSuspendedTransaction.
This commit is contained in:
parent
7b176df6b7
commit
4a65c51326
|
@ -114,7 +114,9 @@ public class JtaIsolationDelegate implements IsolationDelegate {
|
|||
try {
|
||||
// First we suspend any current JTA transaction
|
||||
final Transaction surroundingTransaction = transactionManager.suspend();
|
||||
if ( surroundingTransaction != null ) {
|
||||
LOG.debugf( "Surrounding JTA transaction suspended [%s]", surroundingTransaction );
|
||||
}
|
||||
|
||||
try {
|
||||
return callable.call();
|
||||
|
@ -124,9 +126,11 @@ public class JtaIsolationDelegate implements IsolationDelegate {
|
|||
}
|
||||
finally {
|
||||
try {
|
||||
if ( surroundingTransaction != null ) {
|
||||
transactionManager.resume( surroundingTransaction );
|
||||
LOG.debugf( "Surrounding JTA transaction resumed [%s]", surroundingTransaction );
|
||||
}
|
||||
}
|
||||
catch ( Throwable t2 ) {
|
||||
// if the actually work had an error use that, otherwise error based on t
|
||||
if ( originalException == null ) {
|
||||
|
|
Loading…
Reference in New Issue