Migrating to HttpClient 4.3.1 from 4.2.6 - Solr

2014-01-04 Thread Shawn Heisey
Recently the Lucene-Solr projectupgraded HttpClientin our codebase from 4.2.6 to 4.3.1. https://issues.apache.org/jira/browse/SOLR-5590 Although this did not require any java code changes and seems to have occurred without any new test failures, it will come as no surprise to anyone here that thi

Re: Migrating to HttpClient 4.3.1 from 4.2.6 - Solr

2014-01-05 Thread Oleg Kalnichevski
On Sat, 2014-01-04 at 14:30 -0700, Shawn Heisey wrote: > Recently the Lucene-Solr projectupgraded HttpClientin our codebase from > 4.2.6 to 4.3.1. > > https://issues.apache.org/jira/browse/SOLR-5590 > > Although this did not require any java code changes and seems to have > occurred without any n

Re: Migrating to HttpClient 4.3.1 from 4.2.6 - Solr

2014-01-09 Thread Shawn Heisey
On 1/5/2014 9:03 AM, Oleg Kalnichevski wrote: That is intended. HttpClient instances are expected to be immutable (not their dependencies though). This helps make them thread safe without incurring an overhead of synchronization. One should customize individual requests or execution contexts an

Re: Migrating to HttpClient 4.3.1 from 4.2.6 - Solr

2014-01-09 Thread Oleg Kalnichevski
On Thu, 2014-01-09 at 11:07 -0700, Shawn Heisey wrote: > On 1/5/2014 9:03 AM, Oleg Kalnichevski wrote: > > That is intended. HttpClient instances are expected to be immutable > > (not their dependencies though). This helps make them thread safe > > without incurring an overhead of synchronization