ibessonov commented on code in PR #1490: URL: https://github.com/apache/ignite-3/pull/1490#discussion_r1082582875
########## modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/DistributionZoneManager.java: ########## @@ -741,39 +742,27 @@ private void initDataNodesFromVaultManager() { } try { - // TODO: Remove this call as part of https://issues.apache.org/jira/browse/IGNITE-18397 - vaultMgr.get(MetaStorageManagerImpl.APPLIED_REV) - .thenApply(appliedRevision -> appliedRevision == null ? 0L : bytesToLong(appliedRevision.value())) - .thenAccept(vaultAppliedRevision -> { + long appliedRevision = metaStorageManager.appliedRevision(); + + vaultMgr.get(zonesLogicalTopologyKey()) Review Comment: Just a conversation -- 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