mirror of https://github.com/apache/lucene.git
SOLR-11645: Fix problem with no Args display in admin UI.
This commit is contained in:
parent
6f99196e81
commit
0dadf2c2a8
|
@ -120,6 +120,10 @@ Bug Fixes
|
||||||
* SOLR-11553: JSON Facet API: facet refinement could use UIF in phase one and DV uninversion in phase 2, resulting
|
* SOLR-11553: JSON Facet API: facet refinement could use UIF in phase one and DV uninversion in phase 2, resulting
|
||||||
in too much memory use. (yonik)
|
in too much memory use. (yonik)
|
||||||
|
|
||||||
|
* SOLR-11645: When the java commandline had exact duplicate arguments, the
|
||||||
|
admin UI dashboard would not display any commandline arguments.
|
||||||
|
(Webster Homer via Shawn Heisey)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
* SOLR-11285: Refactor autoscaling framework to avoid direct references to Zookeeper and Solr
|
* SOLR-11285: Refactor autoscaling framework to avoid direct references to Zookeeper and Solr
|
||||||
|
|
|
@ -209,7 +209,7 @@ limitations under the License.
|
||||||
|
|
||||||
<li class="command_line_args"><dl class="clearfix">
|
<li class="command_line_args"><dl class="clearfix">
|
||||||
<dt><span>Args</span></dt>
|
<dt><span>Args</span></dt>
|
||||||
<dd ng-repeat="arg in commandLineArgs" ng-class="{'odd':$odd}">{{arg}}</dd>
|
<dd ng-repeat="arg in commandLineArgs track by $index" ng-class="{'odd':$odd}">{{arg}}</dd>
|
||||||
</dl></li>
|
</dl></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue