shishkovilja commented on code in PR #12508:
URL: https://github.com/apache/ignite/pull/12508#discussion_r2540957339
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java:
##########
@@ -4654,7 +4660,9 @@ private void
updatePartitionFullMap(AffinityTopologyVersion resTopVer, GridDhtPa
assert partHistSuppliers.isEmpty();
- partHistSuppliers.putAll(msg.partitionHistorySuppliers());
+ partHistSuppliers.putAll(
+ msg.partitionHistorySuppliers() != null ?
msg.partitionHistorySuppliers() : IgniteDhtPartitionHistorySuppliersMap.empty()
Review Comment:
Too long line, should be edited to something like that:
```
partHistSuppliers.putAll(msg.partitionHistorySuppliers() != null ?
msg.partitionHistorySuppliers() :+1:
IgniteDhtPartitionHistorySuppliersMap.empty()
```
--
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]