You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by th...@apache.org on 2015/04/03 22:06:45 UTC

svn commit: r1671148 - in /lucene/dev/branches/branch_5x/solr: CHANGES.txt webapp/web/js/scripts/dashboard.js

Author: thelabdude
Date: Fri Apr  3 20:06:45 2015
New Revision: 1671148

URL: http://svn.apache.org/r1671148
Log:
SOLR-7334: Admin UI does not show Num Docs and Deleted DocsC

Modified:
    lucene/dev/branches/branch_5x/solr/CHANGES.txt
    lucene/dev/branches/branch_5x/solr/webapp/web/js/scripts/dashboard.js

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1671148&r1=1671147&r2=1671148&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Fri Apr  3 20:06:45 2015
@@ -331,6 +331,8 @@ Bug Fixes
 
 * SOLR-7299: bin\solr.cmd doesn't use jetty SSL configuration. (Steve Rowe)
 
+* SOLR-7334: Admin UI does not show "Num Docs" and "Deleted Docs". (Erick Erickson, Timothy Potter)
+
 Optimizations
 ----------------------
 

Modified: lucene/dev/branches/branch_5x/solr/webapp/web/js/scripts/dashboard.js
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/webapp/web/js/scripts/dashboard.js?rev=1671148&r1=1671147&r2=1671148&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/webapp/web/js/scripts/dashboard.js (original)
+++ lucene/dev/branches/branch_5x/solr/webapp/web/js/scripts/dashboard.js Fri Apr  3 20:06:45 2015
@@ -111,10 +111,10 @@ sammy.get
                 .show();
                                 
               var data = {
-                'index_num-docs' : response['index']['numDocs'],
+                'index_num-doc' : response['index']['numDocs'],
                 'index_heap-usage-bytes' : response['index']['indexHeapUsageBytes'],
                 'index_max-doc' : response['index']['maxDoc'],
-                'index_deleted-docs' : response['index']['deletedDocs'],
+                'index_deleted-doc' : response['index']['deletedDocs'],
                 'index_version' : response['index']['version'],
                 'index_segmentCount' : response['index']['segmentCount'],
                 'index_last-modified' : response['index']['lastModified']