mirror of
https://github.com/apache/lucene.git
synced 2025-02-08 02:58:58 +00:00
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/lucene-solr
This commit is contained in:
commit
9aefe193c9
@ -629,6 +629,9 @@ Bug Fixes
|
||||
* SOLR-8908: Fix to OnReconnect listener registration to allow listeners to deregister, such
|
||||
as when a core is reloaded or deleted to avoid a memory leak. (Timothy Potter)
|
||||
|
||||
* SOLR-9007: Remove mention of the managed_schema_configs as valid config directory when creating
|
||||
the collection for the SolrCloud example. (Timothy Potter)
|
||||
|
||||
======================= 5.5.0 =======================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||
|
@ -2637,14 +2637,13 @@ public class SolrCLI {
|
||||
"How many replicas per shard would you like to create? [2] ", "a replication factor", 2, 1, 4);
|
||||
|
||||
echo("Please choose a configuration for the "+collectionName+" collection, available options are:");
|
||||
cloudConfig =
|
||||
prompt(readInput, "basic_configs, data_driven_schema_configs, sample_techproducts_configs, or managed_schema_configs ["+cloudConfig+"] ", cloudConfig);
|
||||
String validConfigs = "basic_configs, data_driven_schema_configs, or sample_techproducts_configs ["+cloudConfig+"] ";
|
||||
cloudConfig = prompt(readInput, validConfigs, cloudConfig);
|
||||
|
||||
// validate the cloudConfig name
|
||||
while (!isValidConfig(configsetsDir, cloudConfig)) {
|
||||
echo(cloudConfig+" is not a valid configuration directory! Please choose a configuration for the "+collectionName+" collection, available options are:");
|
||||
cloudConfig =
|
||||
prompt(readInput, "basic_configs, data_driven_schema_configs, sample_techproducts_configs, or managed_schema_configs ["+cloudConfig+"] ", cloudConfig);
|
||||
cloudConfig = prompt(readInput, validConfigs, cloudConfig);
|
||||
}
|
||||
} else {
|
||||
// must verify if default collection exists
|
||||
|
Loading…
x
Reference in New Issue
Block a user