kgusakov commented on code in PR #4764: URL: https://github.com/apache/ignite-3/pull/4764#discussion_r1855557000
########## modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/DistributionZoneManager.java: ########## @@ -985,22 +997,23 @@ private CompletableFuture<Void> scheduleTimers(CatalogZoneDescriptor zone, boole if (nodesRemoved) { if (zone.consistencyMode() == HIGH_AVAILABILITY) { - if (partitionReset == IMMEDIATE_TIMER_VALUE) { - futures.add( - // TODO: IGNITE-23599 Implement valid behaviour here. - nullCompletedFuture() - ); - } - if (partitionReset != INFINITE_TIMER_VALUE) { zonesState.get(zoneId).reschedulePartitionDistributionReset( partitionReset, - // TODO: IGNITE-23599 Implement valid behaviour here. - () -> {}, - zoneId + () -> { + fireEvent( Review Comment: Extracted to the 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org