mirror of
https://github.com/apache/lucene.git
synced 2025-02-24 11:16:35 +00:00
SOLR-12086: Fix format problem in FastLRUCache description string shown on Cache Statistics page
This commit is contained in:
parent
e9393e88fd
commit
9de0ebe797
@ -67,6 +67,9 @@ Other Changes
|
||||
|
||||
* SOLR-12076: Remove unnecessary printLayout usage in CDCR tests (Varun Thacker)
|
||||
|
||||
* SOLR-12086: Fix format problem in FastLRUCache description string shown on Cache Statistics page.
|
||||
(Sathiya N Sundararajan via shalin)
|
||||
|
||||
|
||||
================== 7.3.0 ==================
|
||||
|
||||
|
@ -137,7 +137,7 @@ public class FastLRUCache<K, V> extends SolrCacheBase implements SolrCache<K,V>
|
||||
}
|
||||
|
||||
protected String generateDescription(long maxRamBytes, long ramLowerWatermark, boolean newThread) {
|
||||
String description = "Concurrent LRU Cache(ramMinSize=" + ramLowerWatermark + ", ramMaxSize" + maxRamBytes
|
||||
String description = "Concurrent LRU Cache(ramMinSize=" + ramLowerWatermark + ", ramMaxSize=" + maxRamBytes
|
||||
+ ", cleanupThread=" + newThread;
|
||||
if (isAutowarmingOn()) {
|
||||
description += ", " + getAutowarmDescription();
|
||||
|
Loading…
x
Reference in New Issue
Block a user