mirror of https://github.com/apache/lucene.git
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:
parent
14ea836c0b
commit
1398a0262d
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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 )
|
||||
{
|
||||
|
|
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue