@@ -54,8 +54,8 @@ public class ArangoTransactionManager extends AbstractPlatformTransactionManager
54
54
public ArangoTransactionManager (ArangoOperations operations , QueryTransactionBridge bridge ) {
55
55
this .operations = operations ;
56
56
this .bridge = bridge ;
57
- super . setGlobalRollbackOnParticipationFailure (true );
58
- super . setTransactionSynchronization (SYNCHRONIZATION_ON_ACTUAL_TRANSACTION );
57
+ setGlobalRollbackOnParticipationFailure (true );
58
+ setTransactionSynchronization (SYNCHRONIZATION_ON_ACTUAL_TRANSACTION );
59
59
}
60
60
61
61
/**
@@ -126,10 +126,21 @@ protected void doCommit(DefaultTransactionStatus status) throws TransactionExcep
126
126
}
127
127
try {
128
128
tx .commit ();
129
+ afterCompletion ();
129
130
} catch (ArangoDBException error ) {
131
+ if (!isRollbackOnCommitFailure ()) {
132
+ try {
133
+ tx .rollback ();
134
+ } catch (ArangoDBException noRollback ) {
135
+ if (logger .isDebugEnabled ()) {
136
+ logger .debug ("Cannot rollback after commit " + tx , noRollback );
137
+ }
138
+ // expose commit exception instead
139
+ } finally {
140
+ afterCompletion ();
141
+ }
142
+ }
130
143
throw new TransactionSystemException ("Cannot commit transaction " + tx , error );
131
- } finally {
132
- bridge .clearCurrentTransaction ();
133
144
}
134
145
}
135
146
@@ -151,7 +162,7 @@ protected void doRollback(DefaultTransactionStatus status) throws TransactionExc
151
162
} catch (ArangoDBException error ) {
152
163
throw new TransactionSystemException ("Cannot roll back transaction " + tx , error );
153
164
} finally {
154
- bridge . clearCurrentTransaction ();
165
+ afterCompletion ();
155
166
}
156
167
}
157
168
@@ -203,13 +214,8 @@ protected void prepareSynchronization(DefaultTransactionStatus status, Transacti
203
214
}
204
215
}
205
216
206
- /**
207
- * Unbind the holder from the last transaction completed.
208
- *
209
- * @see ArangoTransactionHolder
210
- */
211
- @ Override
212
- protected void doCleanupAfterCompletion (Object transaction ) {
217
+ private void afterCompletion () {
218
+ bridge .clearCurrentTransaction ();
213
219
TransactionSynchronizationManager .unbindResource (operations .getDatabaseName ());
214
220
}
215
221
}
0 commit comments