sk0x50 commented on code in PR #5276: URL: https://github.com/apache/ignite-3/pull/5276#discussion_r1973435215
########## modules/index/src/main/java/org/apache/ignite/internal/index/IndexBuildController.java: ########## @@ -184,60 +233,113 @@ private CompletableFuture<?> onIndexRemoved(RemoveIndexEventParameters parameter private CompletableFuture<?> onPrimaryReplicaElected(PrimaryReplicaEventParameters parameters) { return inBusyLockAsync(busyLock, () -> { - TablePartitionId primaryReplicaId = (TablePartitionId) parameters.groupId(); - if (isLocalNode(clusterService, parameters.leaseholderId())) { - primaryReplicaIds.add(primaryReplicaId); + // TODO https://issues.apache.org/jira/browse/IGNITE-24375 + // Need to remove TablePartitionId check here and below. + assert parameters.groupId() instanceof ZonePartitionId || parameters.groupId() instanceof TablePartitionId : + "Primary replica ID must be of type ZonePartitionId or TablePartitionId"; Review Comment: Thanks. Fixed. -- 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