We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47da21b commit 66e05a6Copy full SHA for 66e05a6
kie-spring/src/main/java/org/kie/spring/persistence/KieSpringTransactionManager.java
@@ -107,10 +107,11 @@ public void rollback(boolean transactionOwner) {
107
}
108
109
private void cleanupTransaction() {
110
- currentTransaction = null;
111
if (TransactionSynchronizationManager.hasResource(KieSpringTransactionManager.RESOURCE_CONTAINER)) {
112
TransactionSynchronizationManager.unbindResource(KieSpringTransactionManager.RESOURCE_CONTAINER);
113
+ TransactionSynchronizationManager.clear();
114
+ currentTransaction = null;
115
116
117
/**
0 commit comments