anton-vinogradov commented on a change in pull request #9807:
URL: https://github.com/apache/ignite/pull/9807#discussion_r818623634
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/consistency/GridNearReadRepairFuture.java
##########
@@ -79,11 +117,25 @@ public GridNearReadRepairFuture(
deserializeBinary,
recovery,
expiryPlc,
- tx);
+ tx,
+ remappedFut);
assert ctx.transactional() : "Atomic cache should not be recovered
using this future";
+ }
- init();
+ /** {@inheritDoc} */
+ @Override protected GridNearReadRepairAbstractFuture
remapFuture(AffinityTopologyVersion topVer) {
+ return new GridNearReadRepairFuture(
+ topVer,
+ ctx,
+ keys,
+ strategy,
+ readThrough,
+ taskName,
+ deserializeBinary,
+ recovery,
+ expiryPlc,
+ tx);
Review comment:
Fixed by UnsupportedOperationException
--
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]