rpuch commented on code in PR #2978:
URL: https://github.com/apache/ignite-3/pull/2978#discussion_r1432305278
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java:
##########
@@ -3640,7 +3668,7 @@ private void failIfSchemaChangedSinceTxStart(UUID txId,
HybridTimestamp operatio
}
private CompletableFuture<Integer>
reliableCatalogVersionFor(HybridTimestamp ts) {
- return schemaSyncService.waitForMetadataCompleteness(ts)
+ return waitForMetadataCompleteness(ts)
.thenApply(unused ->
catalogService.activeCatalogVersion(ts.longValue()));
}
Review Comment:
I don't get this one. `waitForMetadataCompleteness()` method guarantees to
return a future which dependents will be executed in the partition-operations
thread. How does it relate to a Raft client?
--
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]