You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by no...@apache.org on 2009/08/29 14:31:13 UTC

svn commit: r809123 - /lucene/solr/trunk/example/solr/conf/solrconfig.xml

Author: noble
Date: Sat Aug 29 12:31:13 2009
New Revision: 809123

URL: http://svn.apache.org/viewvc?rev=809123&view=rev
Log:
two declarations of /replication is misleading

Modified:
    lucene/solr/trunk/example/solr/conf/solrconfig.xml

Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?rev=809123&r1=809122&r2=809123&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Sat Aug 29 12:31:13 2009
@@ -431,24 +431,19 @@
   </requestHandler>
 
 <!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->
-<!--Master config-->
+<!-- remove the <lst name="master"> section if this is just a slave -->
+<!-- remove  the <lst name="slave"> section if this is just a master -->
 <!--
 <requestHandler name="/replication" class="solr.ReplicationHandler" >
     <lst name="master">
         <str name="replicateAfter">commit</str>
          <str name="confFiles">schema.xml,stopwords.txt</str>
     </lst>
-</requestHandler>
--->
-<!-- Slave config-->
-<!--
-<requestHandler name="/replication" class="solr.ReplicationHandler">
     <lst name="slave">
         <str name="masterUrl">http://localhost:8983/solr/replication</str>
-        <str name="pollInterval">00:00:60</str>  
+        <str name="pollInterval">00:00:60</str>
      </lst>
-</requestHandler>
--->
+</requestHandler>-->
 
   <!-- DisMaxRequestHandler allows easy searching across multiple fields
        for simple user-entered phrases.  It's implementation is now