[ 
https://issues.apache.org/jira/browse/SOLR-14956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17219095#comment-17219095
 ] 

ASF subversion and git services commented on SOLR-14956:
--------------------------------------------------------

Commit 43c087f91bb303e6193da749e0f1773d201b5b8a in lucene-solr's branch 
refs/heads/master from Christine Poerschke
[ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=43c087f ]

SOLR-14956: correct (socket|conn)Timeout casing in 'Configuring the 
ShardHandlerFactory' example
(Yevhen Tienkaiev via Christine Poerschke)


> 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, 8.6.3
>            Reporter: Yevhen Tienkaiev
>            Priority: Major
>
> 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