You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2020/10/22 15:29:12 UTC

[lucene-solr] branch branch_8_7 updated: SOLR-14956: correct (socket|conn)Timeout casing in 'Configuring the ShardHandlerFactory' example (Yevhen Tienkaiev via Christine Poerschke)

This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch branch_8_7
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_7 by this push:
     new 456881c  SOLR-14956: correct (socket|conn)Timeout casing in 'Configuring the ShardHandlerFactory' example (Yevhen Tienkaiev via Christine Poerschke)
456881c is described below

commit 456881cd079e7beeed3876c0a0d22460858aeee9
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Thu Oct 22 16:24:50 2020 +0100

    SOLR-14956: correct (socket|conn)Timeout casing in 'Configuring the ShardHandlerFactory' example
    (Yevhen Tienkaiev via Christine Poerschke)
---
 solr/solr-ref-guide/src/distributed-requests.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/distributed-requests.adoc b/solr/solr-ref-guide/src/distributed-requests.adoc
index e8d855f..e916537 100644
--- a/solr/solr-ref-guide/src/distributed-requests.adoc
+++ b/solr/solr-ref-guide/src/distributed-requests.adoc
@@ -83,8 +83,8 @@ To add a `shardHandlerFactory` to the standard search handler, provide a configu
 <requestHandler name="/select" class="solr.SearchHandler">
   <!-- other params go here -->
   <shardHandlerFactory class="HttpShardHandlerFactory">
-    <int name="socketTimeOut">1000</int>
-    <int name="connTimeOut">5000</int>
+    <int name="socketTimeout">1000</int>
+    <int name="connTimeout">5000</int>
   </shardHandlerFactory>
 </requestHandler>
 ----