SOLR-4062: The update log location in solrconfig.xml should default to ${solr.ulog.dir} rather than ${solr.data.dir:}

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1417702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-12-06 00:10:19 +00:00
parent 9617ace9b6
commit 6996e74dca
4 changed files with 5 additions and 2 deletions

View File

@ -324,6 +324,9 @@ Other Changes
* SOLR-4074: Raise default ramBufferSizeMB to 100 from 32.
(yonik, Mark Miller)
* SOLR-4062: The update log location in solrconfig.xml should default to
${solr.ulog.dir} rather than ${solr.data.dir:} (Mark Miller)
================== 4.0.0 ==================
Versions of Major Components

View File

@ -90,7 +90,7 @@
-->
<updateLog enable="${enable.update.log:false}">
<str name="dir">${solr.data.dir:}</str>
<str name="dir">${solr.ulog.dir:}</str>
</updateLog>
</updateHandler>

View File

View File

@ -374,7 +374,7 @@
"dir" - the target directory for transaction logs, defaults to the
solr data directory. -->
<updateLog>
<str name="dir">${solr.data.dir:}</str>
<str name="dir">${solr.ulog.dir:}</str>
</updateLog>