[ https://issues.apache.org/jira/browse/SOLR-14956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17219098#comment-17219098 ]
ASF subversion and git services commented on SOLR-14956: -------------------------------------------------------- Commit 456881cd079e7beeed3876c0a0d22460858aeee9 in lucene-solr's branch refs/heads/branch_8_7 from Christine Poerschke [ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=456881c ] 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