mirror of https://github.com/apache/lucene.git
don't lazy load the replication handler - you can miss replicating commits that happen before the handler is loaded
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1238814 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
00a959eaa2
commit
942b41c004
|
@ -238,7 +238,7 @@
|
|||
|
||||
</query>
|
||||
|
||||
<requestHandler name="/replication" class="solr.ReplicationHandler" startup="lazy" />
|
||||
<requestHandler name="/replication" class="solr.ReplicationHandler" />
|
||||
|
||||
<!-- An alternate set representation that uses an integer hash to store filters (sets of docids).
|
||||
If the set cardinality <= maxSize elements, then HashDocSet will be used instead of the bitset
|
||||
|
|
|
@ -1075,7 +1075,7 @@
|
|||
|
||||
This is the config need for SolrCloud's recovery replication.
|
||||
-->
|
||||
<requestHandler name="/replication" class="solr.ReplicationHandler" startup="lazy" />
|
||||
<requestHandler name="/replication" class="solr.ReplicationHandler" />
|
||||
|
||||
|
||||
<!-- Search Components
|
||||
|
|
Loading…
Reference in New Issue