Lalant commented on code in PR #7482:
URL: https://github.com/apache/ignite-3/pull/7482#discussion_r2917616757
##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/ReadWriteTransactionImpl.java:
##########
@@ -63,6 +71,10 @@ public class ReadWriteTransactionImpl extends
IgniteAbstractTransactionImpl {
/** The future is initialized when this transaction starts committing or
rolling back and is finished together with the transaction. */
private volatile CompletableFuture<Void> finishFuture;
+ private volatile @Nullable Throwable finishCause;
+
+ private volatile int finishCode = TX_ALREADY_FINISHED_ERR;
Review Comment:
Removed, inspired by Client tx, but here it is really not required.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]