SOLR-4306: Utilize indexInfo=false when gathering core names in UI

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1439516 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Matheis 2013-01-28 17:38:47 +00:00
parent 14ea836c0b
commit 1398a0262d
3 changed files with 5 additions and 8 deletions

View File

@ -107,6 +107,9 @@ Optimizations
* SOLR-3915: Color Legend for Cloud UI (steffkes)
* SOLR-4306: Utilize indexInfo=false when gathering core names in UI
(steffkes)
Other Changes
----------------------

View File

@ -277,7 +277,7 @@ var solr_admin = function( app_config )
$.ajax
(
{
url : config.solr_path + config.core_admin_path + '?wt=json',
url : config.solr_path + config.core_admin_path + '?wt=json&indexInfo=false',
dataType : 'json',
beforeSend : function( arr, form, options )
{

View File

@ -20,12 +20,6 @@ sammy.bind
'cores_load_data',
function( event, params )
{
if( app.cores_data )
{
params.callback( app.cores_data );
return true;
}
$.ajax
(
{
@ -335,7 +329,7 @@ sammy.get
.ajaxForm
(
{
url : app.config.solr_path + app.config.core_admin_path + '?wt=json',
url : app.config.solr_path + app.config.core_admin_path + '?wt=json&indexInfo=false',
dataType : 'json',
beforeSubmit : function( array, form, options )
{