sanpwc commented on code in PR #5766:
URL: https://github.com/apache/ignite-3/pull/5766#discussion_r2077277834
##########
modules/distribution-zones/src/integrationTest/java/org/apache/ignite/internal/rebalance/ItRebalanceDistributedTest.java:
##########
@@ -1087,14 +1088,18 @@ private static Set<Assignment>
getPartitionStableAssignments(Node node, String t
.orElse(Set.of());
}
- private static Set<Assignment> getPartitionPendingAssignments(Node node,
int partNum) {
- TableViewInternal table =
unwrapTableViewInternal(node.tableManager.table(TABLE_NAME));
+ private static Set<Assignment> getPartitionPendingAssignments(Node node,
String tableName, int partNum) {
+ TableViewInternal table =
unwrapTableViewInternal(node.tableManager.table(tableName));
return Optional
.ofNullable(pendingPartitionAssignments(node.metaStorageManager, table,
partNum).join())
Review Comment:
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]