sergeyuttsel commented on code in PR #2095:
URL: https://github.com/apache/ignite-3/pull/2095#discussion_r1271880757
##########
modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/DistributionZoneManager.java:
##########
@@ -649,19 +659,8 @@ public Set<String> dataNodes(int zoneId) {
});
}
- /**
- * Asynchronously gets data nodes of the zone using causality token.
- *
- * <p>The returned future can be completed with {@link
DistributionZoneNotFoundException} if the zone with the provided {@code zoneId}
- * does not exist.
- *
- * @param causalityToken Causality token.
- * @param zoneId Zone id.
- * @return The future which will be completed with data nodes for the
zoneId or with exception.
- */
- // TODO: Will be implemented in IGNITE-19506.
- public CompletableFuture<Set<String>> dataNodes(long causalityToken, int
zoneId) {
- return null;
+ public Set<String> dataNodes(long causalityToken, int zoneId) {
Review Comment:
I removed this method.
--
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]