SOLR-14956: correct (socket|conn)Timeout casing in 'Configuring the ShardHandlerFactory' example

(Yevhen Tienkaiev via Christine Poerschke)
This commit is contained in:
Christine Poerschke 2020-10-22 16:24:50 +01:00
parent 62de8f9f46
commit 43c087f91b
1 changed files with 2 additions and 2 deletions

View File

@ -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>
----