You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by st...@apache.org on 2013/10/05 21:37:55 UTC

svn commit: r1529502 - in /lucene/dev/trunk/solr: CHANGES.txt webapp/web/js/scripts/index.js

Author: steffkes
Date: Sat Oct  5 19:37:55 2013
New Revision: 1529502

URL: http://svn.apache.org/r1529502
Log:
SOLR-5305: Admin UI - Reloading System-Information on Dashboard does not work anymore

Modified:
    lucene/dev/trunk/solr/CHANGES.txt
    lucene/dev/trunk/solr/webapp/web/js/scripts/index.js

Modified: lucene/dev/trunk/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/CHANGES.txt?rev=1529502&r1=1529501&r2=1529502&view=diff
==============================================================================
--- lucene/dev/trunk/solr/CHANGES.txt (original)
+++ lucene/dev/trunk/solr/CHANGES.txt Sat Oct  5 19:37:55 2013
@@ -109,6 +109,9 @@ Bug Fixes
 * SOLR-5255: Remove unnecessary call to fetch and watch live nodes in ZkStateReader
   cluster watcher. (Jessica Cheng via shalin)
 
+* SOLR-5305: Admin UI - Reloading System-Information on Dashboard does not work 
+  anymore (steffkes)
+
 Security
 ----------------------
 

Modified: lucene/dev/trunk/solr/webapp/web/js/scripts/index.js
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/webapp/web/js/scripts/index.js?rev=1529502&r1=1529501&r2=1529502&view=diff
==============================================================================
--- lucene/dev/trunk/solr/webapp/web/js/scripts/index.js (original)
+++ lucene/dev/trunk/solr/webapp/web/js/scripts/index.js Sat Oct  5 19:37:55 2013
@@ -303,7 +303,7 @@ sammy.get
                 $.ajax
                 (
                   {
-                    url : environment_basepath + '/admin/system?wt=json',
+                    url : config.solr_path + '/admin/info/system?wt=json',
                     dataType : 'json',
                     context : this,
                     beforeSend : function( arr, form, options )
@@ -337,4 +337,4 @@ sammy.get
       }
     );
   }
-);
\ No newline at end of file
+);