mirror of https://github.com/apache/lucene.git
SOLR-2333: The "rename" core admin action does not persist the new name to solr.xml
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1095120 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b87910440
commit
a440c8c018
|
@ -276,7 +276,8 @@ Bug Fixes
|
|||
performance/algorithmic improvements when (facet.sort=count && facet.mincount=1
|
||||
&& facet.limit=-1) and when (facet.sort=index && facet.mincount>0) (yonik)
|
||||
|
||||
|
||||
* SOLR-2333: The "rename" core admin action does not persist the new name to solr.xml
|
||||
(Rasmus Hahn, Paul R. Brown via Mark Miller)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
|
|
@ -500,7 +500,12 @@ public class CoreContainer
|
|||
SolrCore old = null;
|
||||
synchronized (cores) {
|
||||
old = cores.put(name, core);
|
||||
/*
|
||||
* set both the name of the descriptor and the name of the
|
||||
* core, since the descriptors name is used for persisting.
|
||||
*/
|
||||
core.setName(name);
|
||||
core.getCoreDescriptor().name = name;
|
||||
}
|
||||
|
||||
if (zkController != null) {
|
||||
|
|
|
@ -110,6 +110,10 @@ public class TestSolrProperties extends LuceneTestCase {
|
|||
return new EmbeddedSolrServer(cores, "core0");
|
||||
}
|
||||
|
||||
protected SolrServer getRenamedSolrAdmin() {
|
||||
return new EmbeddedSolrServer(cores, "renamed_core");
|
||||
}
|
||||
|
||||
protected SolrServer getSolrCore(String name) {
|
||||
return new EmbeddedSolrServer(cores, name);
|
||||
}
|
||||
|
@ -197,6 +201,16 @@ public class TestSolrProperties extends LuceneTestCase {
|
|||
fis.close();
|
||||
}
|
||||
|
||||
CoreAdminRequest.renameCore(name, "renamed_core", coreadmin);
|
||||
mcr = CoreAdminRequest.persist("solr-persist.xml", getRenamedSolrAdmin());
|
||||
|
||||
fis = new FileInputStream(new File(solrXml.getParent(), "solr-persist.xml"));
|
||||
try {
|
||||
Document document = builder.parse(fis);
|
||||
assertTrue(exists("/solr/cores/core[@name='renamed_core']", document));
|
||||
} finally {
|
||||
fis.close();
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean exists(String xpathStr, Node node)
|
||||
|
|
Loading…
Reference in New Issue