You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Shawn Heisey (JIRA)" <ji...@apache.org> on 2014/02/18 00:31:19 UTC

[jira] [Created] (SOLR-5741) UpdateShardHandler not setting max connections correctly

Shawn Heisey created SOLR-5741:
----------------------------------

             Summary: UpdateShardHandler not setting max connections correctly
                 Key: SOLR-5741
                 URL: https://issues.apache.org/jira/browse/SOLR-5741
             Project: Solr
          Issue Type: Bug
          Components: SolrCloud, update
    Affects Versions: 4.6.1
            Reporter: Shawn Heisey
             Fix For: 4.7, 5.0
         Attachments: SOLR-5741.patch

The following line in UpdateShardHandler.java looks incorrect to me:

{code}
clientConnectionManager.setDefaultMaxPerRoute(cfg.getMaxUpdateConnections());
{code}

I think it should be:

{code}
clientConnectionManager.setMaxTotal(cfg.getMaxUpdateConnections());
{code}




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org