You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2013/07/01 19:38:29 UTC

svn commit: r1498602 - /lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml

Author: sarowe
Date: Mon Jul  1 17:38:29 2013
New Revision: 1498602

URL: http://svn.apache.org/r1498602
Log:
SOLR-4897: include add-unknown-fields-to-the-schema in the set of default update.chain-s for all defined /update request handlers

Modified:
    lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml

Modified: lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml?rev=1498602&r1=1498601&r2=1498602&view=diff
==============================================================================
--- lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml (original)
+++ lucene/dev/trunk/solr/example/example-schemaless/solr/collection1/conf/solrconfig.xml Mon Jul  1 17:38:29 2013
@@ -1017,11 +1017,13 @@
   <requestHandler name="/update/json" class="solr.JsonUpdateRequestHandler">
     <lst name="defaults">
       <str name="stream.contentType">application/json</str>
+      <str name="update.chain">add-unknown-fields-to-the-schema</str>
     </lst>
   </requestHandler>
   <requestHandler name="/update/csv" class="solr.CSVRequestHandler">
     <lst name="defaults">
       <str name="stream.contentType">application/csv</str>
+      <str name="update.chain">add-unknown-fields-to-the-schema</str>
     </lst>
   </requestHandler>