Fix typo lage->large , improve warning message (#5890)

This commit is contained in:
George Paraskevas 2018-06-23 03:33:02 +03:00 committed by Nishant Bangarwa
parent 8c5ded0fad
commit 4b111929ec
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class StorageLocation
{ {
if (available() < segment.getSize()) { if (available() < segment.getSize()) {
log.warn( log.warn(
"Segment[%s:%,d] too lage for storage[%s:%,d].", "Segment[%s:%,d] too large for storage[%s:%,d]. Check your druid.segmentCache.locations maxSize param",
segment.getIdentifier(), segment.getSize(), getPath(), available() segment.getIdentifier(), segment.getSize(), getPath(), available()
); );
return false; return false;