You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2018/03/14 04:57:25 UTC

lucene-solr:branch_7x: SOLR-12086: Fix format problem in FastLRUCache description string shown on Cache Statistics page

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x e7dd3fc26 -> f0c8bbb06


SOLR-12086: Fix format problem in FastLRUCache description string shown on Cache Statistics page

(cherry picked from commit 9de0ebe)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/f0c8bbb0
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/f0c8bbb0
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/f0c8bbb0

Branch: refs/heads/branch_7x
Commit: f0c8bbb0627828d239c03d89de3b89825d528ff8
Parents: e7dd3fc
Author: Shalin Shekhar Mangar <sh...@apache.org>
Authored: Wed Mar 14 10:26:45 2018 +0530
Committer: Shalin Shekhar Mangar <sh...@apache.org>
Committed: Wed Mar 14 10:27:17 2018 +0530

----------------------------------------------------------------------
 solr/CHANGES.txt                                            | 3 +++
 solr/core/src/java/org/apache/solr/search/FastLRUCache.java | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/f0c8bbb0/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index e528c29..d8eeb2d 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -47,6 +47,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 ==================
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/f0c8bbb0/solr/core/src/java/org/apache/solr/search/FastLRUCache.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/search/FastLRUCache.java b/solr/core/src/java/org/apache/solr/search/FastLRUCache.java
index b2e56a8..a73a65a 100644
--- a/solr/core/src/java/org/apache/solr/search/FastLRUCache.java
+++ b/solr/core/src/java/org/apache/solr/search/FastLRUCache.java
@@ -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();