mirror of https://github.com/apache/lucene.git
SOLR-11933: make DIH safer by not default checking the clean checkbox
This closes #316
This commit is contained in:
parent
c508068240
commit
62537bebc4
|
@ -260,6 +260,8 @@ Other Changes
|
||||||
|
|
||||||
* SOLR-11613: Make message for missing dataimport config in UI more explicit. (Shawn Heisey, Amrit Sarkar via Cassandra Targett)
|
* SOLR-11613: Make message for missing dataimport config in UI more explicit. (Shawn Heisey, Amrit Sarkar via Cassandra Targett)
|
||||||
|
|
||||||
|
* SOLR-11933: Make DIH UI page safer by not default checking the clean checkbox (Eric Pugh via Tomás Fernández Löbbe)
|
||||||
|
|
||||||
================== 7.2.1 ==================
|
================== 7.2.1 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||||
|
|
|
@ -96,7 +96,7 @@ solrAdminApp.controller('DataImportController',
|
||||||
$scope.form = {
|
$scope.form = {
|
||||||
command: "full-import",
|
command: "full-import",
|
||||||
verbose: false,
|
verbose: false,
|
||||||
clean: true,
|
clean: false,
|
||||||
commit: true,
|
commit: true,
|
||||||
showDebug: false,
|
showDebug: false,
|
||||||
custom: "",
|
custom: "",
|
||||||
|
|
Loading…
Reference in New Issue