ascherbakoff commented on code in PR #4227:
URL: https://github.com/apache/ignite-3/pull/4227#discussion_r1721464215


##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java:
##########
@@ -2795,26 +2761,28 @@ private CompletableFuture<CompletableFuture<?>> 
applyUpdateCommand(
                 return resultFuture.thenApply(res -> {
                     UpdateCommandResult updateCommandResult = 
(UpdateCommandResult) res;
 
-                    if (full && !updateCommandResult.isPrimaryReplicaMatch()) {
+                    if (full && updateCommandResult != null && 
!updateCommandResult.isPrimaryReplicaMatch()) {

Review Comment:
   This is not possible due to dependency issues. The response class is not 
available in raft module.



-- 
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]

Reply via email to