rpuch commented on code in PR #5584:
URL: https://github.com/apache/ignite-3/pull/5584#discussion_r2050228507
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/disaster/GroupUpdateRequestHandler.java:
##########
@@ -129,13 +129,13 @@ public CompletableFuture<Void>
handle(DisasterRecoveryManager disasterRecoveryMa
.map(NodeWithAttributes::nodeName)
.collect(toSet());
- List<CompletableFuture<Void>> tableFuts = new
ArrayList<>(request.partitionIds().size());
+ List<CompletableFuture<Void>> assignmentsUpdateFut = new
ArrayList<>(request.partitionIds().size());
Review Comment:
```suggestion
List<CompletableFuture<Void>> assignmentsUpdateFuts = new
ArrayList<>(request.partitionIds().size());
```
As this is a collection
--
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]