Yevhen Tienkaiev created SOLR-14956:
---------------------------------------

             Summary: Wrong case of parameters in example for "Configuring the 
ShardHandlerFactory"
                 Key: SOLR-14956
                 URL: https://issues.apache.org/jira/browse/SOLR-14956
             Project: Solr
          Issue Type: Bug
      Security Level: Public (Default Security Level. Issues are Public)
          Components: documentation
    Affects Versions: 8.6.3, 8.6
            Reporter: Yevhen Tienkaiev


Wrong case of parameters in example here 
https://lucene.apache.org/solr/guide/8_6/distributed-requests.html#configuring-the-shardhandlerfactory
{code}
<requestHandler name="/select" class="solr.SearchHandler">
  <!-- other params go here -->
  <shardHandlerFactory class="HttpShardHandlerFactory">
    <int name="socketTimeOut">1000</int>
    <int name="connTimeOut">5000</int>
  </shardHandlerFactory>
</requestHandler>
{code}

should be next:
{code}
<requestHandler name="/select" class="solr.SearchHandler">
  <!-- other params go here -->
  <shardHandlerFactory class="HttpShardHandlerFactory">
    <int name="socketTimeout">1000</int>
    <int name="connTimeout">5000</int>
  </shardHandlerFactory>
</requestHandler>
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to