mirror of https://github.com/apache/lucene.git
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:
parent
9617ace9b6
commit
6996e74dca
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue