shishkovilja commented on code in PR #12392:
URL: https://github.com/apache/ignite/pull/12392#discussion_r2416532453
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/GridDistributedTxFinishResponse.java:
##########
@@ -67,11 +72,26 @@ public GridDistributedTxFinishResponse(int part,
GridCacheVersion txId, IgniteUu
this.futId = futId;
}
+ /** */
+ public void partition(int part) {
+ this.part = part;
+ }
+
/** {@inheritDoc} */
@Override public final int partition() {
return part;
}
+ /** */
+ public void flags(byte flags) {
+ this.flags = flags;
+ }
+
+ /** */
+ public byte flags() {
Review Comment:
@Vladsz83 , as I can see flags is used only in
`GridDhtTxFinishResponse#checkCommitted` methods, so I suggest to remove it in
[IGNITE-26589](https://issues.apache.org/jira/browse/IGNITE-26589). Please add
TODO here.
--
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]