Skip to content

Commit c9b3713

Browse files
committed
IGNITE-26866 rename
1 parent ab4a84f commit c9b3713

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3311,14 +3311,14 @@ private void assignPartitionSizes(GridDhtPartitionTopology top) {
33113311
if (partMap == null)
33123312
continue;
33133313

3314-
Map<Integer, Long> partsSizes = singleMsg.partitionSizes(top.groupId());
3314+
Map<Integer, Long> grpPartSizes = singleMsg.partitionSizes(top.groupId());
33153315

33163316
for (Map.Entry<Integer, GridDhtPartitionState> e0 : partMap.entrySet()) {
33173317
int p = e0.getKey();
33183318
GridDhtPartitionState state = e0.getValue();
33193319

33203320
if (state == GridDhtPartitionState.OWNING) {
3321-
Long size = partsSizes.get(p);
3321+
Long size = grpPartSizes.get(p);
33223322

33233323
if (size != null)
33243324
partSizes.put(p, size);

0 commit comments

Comments
 (0)