ascherbakoff commented on code in PR #2520: URL: https://github.com/apache/ignite-3/pull/2520#discussion_r1345625149
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java: ########## @@ -1654,10 +1685,13 @@ private CompletableFuture<Object> processMultiEntryAction(ReadWriteMultiRowRepli } } - CompletableFuture<Object> raftFut = rowIdsToDelete.isEmpty() ? completedFuture(null) - : updateAllCommand(request, rowIdsToDelete).thenCompose(this::applyUpdateAllCommand); + if (rowIdsToDelete.isEmpty()) { + return completedFuture(new ReplicaResult(result, null)); Review Comment: Not sure if this is actual after merging. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org