sanpwc commented on code in PR #3540:
URL: https://github.com/apache/ignite-3/pull/3540#discussion_r1553898357
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/TransactionStateResolver.java:
##########
@@ -241,7 +242,7 @@ private void resolveTxStateFromCommitPartition(
* @param txId Transaction id.
*/
private void markAbandoned(UUID txId) {
- txManager.updateTxMeta(txId, TxStateMeta::abandoned);
+ txManager.updateTxMeta(txId, stateMeta -> stateMeta != null ?
stateMeta.abandoned() : null);
Review Comment:
It's the one related to NPE and not the ticket itself, right?
--
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]