1
0
mirror of https://github.com/yacy/yacy_search_server.git synced 2025-07-19 08:44:42 -04:00

fix: enable use of solrcore.properties for property substitution of solrconfig.xml

This commit is contained in:
reger
2013-06-01 05:50:03 +02:00
parent 8a7fcb391d
commit 9ef1fd9bac

@ -144,7 +144,7 @@ public class EmbeddedInstance implements SolrInstance {
source = new File(solr_config, "solrcore.properties");
} else {
source = new File(solr_config, "solrcore.x86.properties");
if (source.exists()) {
if (!source.exists()) {
source = new File(solr_config, "solrcore.properties");
}
}