vdmitrienko commented on code in PR #7064:
URL: https://github.com/apache/ignite-3/pull/7064#discussion_r2560997481
##########
modules/index/src/main/java/org/apache/ignite/internal/index/IndexBuildTask.java:
##########
@@ -301,7 +324,12 @@ private CompletableFuture<TxState>
resolveFinalTxStateIfNeeded(UUID transactionI
ZonePartitionId commitGroupId = new
ZonePartitionId(commitPartitionId.commitZoneId,
commitPartitionId.commitPartitionId);
- return
finalTransactionStateResolver.resolveFinalTxState(transactionId, commitGroupId);
+ return
finalTransactionStateResolver.resolveFinalTxState(transactionId, commitGroupId)
+ .thenApply(txState -> {
+ taskListener.onWriteIntentResolved(taskId, txState);
+
+ return txState;
Review Comment:
Done.
--
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]