jihoonson commented on a change in pull request #8114: Fix race between
canHandle() and addSegment() in StorageLocation
URL: https://github.com/apache/incubator-druid/pull/8114#discussion_r307847309
##########
File path:
server/src/main/java/org/apache/druid/segment/loading/SegmentLoaderLocalCacheManager.java
##########
@@ -43,8 +42,9 @@
public class SegmentLoaderLocalCacheManager implements SegmentLoader
{
private static final EmittingLogger log = new
EmittingLogger(SegmentLoaderLocalCacheManager.class);
- private static final Comparator<StorageLocation> COMPARATOR = (left, right)
->
- Longs.compare(right.availableSizeBytes(), left.availableSizeBytes());
+ private static final Comparator<StorageLocation> COMPARATOR = Comparator
+ .comparing(StorageLocation::availableSizeBytes)
Review comment:
Oh yeah. 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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]