Patanachai Tangchaisin created SOLR-4363:
--------------------------------------------
Summary: Inconsistent "coreLoadThreads" attributes in solr.xml
between read/write
Key: SOLR-4363
URL: https://issues.apache.org/jira/browse/SOLR-4363
Project: Solr
Issue Type: Bug
Affects Versions: 4.1
Reporter: Patanachai Tangchaisin
Priority: Minor
Solr is reading "coreLoadThreads" from an solr element in solr.xml
However, when persistent is enabled in solr.xml, Solr inserts "coreLoadThreads"
attribute to a wrong element.
Before start solr
{code}
<solr persistent="true" coreLoadThreads="2">
<cores host="localhost" adminPath="/admin/cores" hostPort="8983"
hostContext="solr">
.....
</solr>
{code}
After start solr
{code}
<solr persistent="true" >
<cores host="localhost" adminPath="/admin/cores" coreLoadThreads="2"
hostPort="8080" hostContext="solr">
.....
</solr>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]