[GitHub] httpcomponents-client pull request #82: Fixed NPE PoolingAsyncClientConnecti...

2017-08-09 Thread cakofony
GitHub user cakofony opened a pull request: https://github.com/apache/httpcomponents-client/pull/82 Fixed NPE PoolingAsyncClientConnectionManager PoolingAsyncClientConnectionManager.validateAfterInactivity causes an NPE when PoolEntries are initially created with no Connection.

[GitHub] httpcomponents-core pull request #48: BasicRequestProducer propagates failur...

2017-08-09 Thread cakofony
Github user cakofony closed the pull request at: https://github.com/apache/httpcomponents-core/pull/48 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[GitHub] httpcomponents-client pull request #82: Fixed NPE PoolingAsyncClientConnecti...

2017-08-09 Thread ok2c
Github user ok2c commented on a diff in the pull request: https://github.com/apache/httpcomponents-client/pull/82#discussion_r132268912 --- Diff: httpclient5/src/main/java/org/apache/hc/client5/http/impl/nio/PoolingAsyncClientConnectionManager.java --- @@ -183,6 +184,12 @@

[GitHub] httpcomponents-client issue #82: Fixed NPE PoolingAsyncClientConnectionManag...

2017-08-09 Thread ok2c
Github user ok2c commented on the issue: https://github.com/apache/httpcomponents-client/pull/82 Please review and close. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled

[jira] [Assigned] (HTTPCORE-481) Early response suspends output even when response status is not error

2017-08-09 Thread Oleg Kalnichevski (JIRA)
[ https://issues.apache.org/jira/browse/HTTPCORE-481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oleg Kalnichevski reassigned HTTPCORE-481: -- Assignee: Oleg Kalnichevski Fix Version/s: 4.4.7 > Early response

HttpCore 5.0: moving to BETA

2017-08-09 Thread Oleg Kalnichevski
Folks I just committed a large chunk of code with the last big feature I had in mind for the HttpCore 5.0 release. The server side transports (both classic and async) now provide filter support that can be used to implement cross-cutting aspects for all incoming requests such the expect-continue

Re: HttpCore 5.0: moving to BETA

2017-08-09 Thread Gary Gregory
On Wed, Aug 9, 2017 at 12:41 PM, Oleg Kalnichevski wrote: > Folks > > I just committed a large chunk of code with the last big feature I had > in mind for the HttpCore 5.0 release. The server side transports (both > classic and async) now provide filter support that can be used

[GitHub] httpcomponents-client pull request #82: Fixed NPE PoolingAsyncClientConnecti...

2017-08-09 Thread cakofony
Github user cakofony commented on a diff in the pull request: https://github.com/apache/httpcomponents-client/pull/82#discussion_r132220250 --- Diff: httpclient5/src/main/java/org/apache/hc/client5/http/impl/nio/PoolingAsyncClientConnectionManager.java --- @@ -183,6 +184,12 @@

[GitHub] httpcomponents-client pull request #82: Fixed NPE PoolingAsyncClientConnecti...

2017-08-09 Thread cakofony
Github user cakofony closed the pull request at: https://github.com/apache/httpcomponents-client/pull/82 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if

[GitHub] httpcomponents-core issue #49: HeaderGroup uses a ReadWriteLock for access t...

2017-08-09 Thread garydgregory
Github user garydgregory commented on the issue: https://github.com/apache/httpcomponents-core/pull/49 Could there be fewer changes if a CopyOnWriteArrayList is used instead of an ArrayList in HeaderGroup? --- If your project is set up for it, you can reply to this email and have

[GitHub] httpcomponents-core issue #49: HeaderGroup uses a ReadWriteLock for access t...

2017-08-09 Thread cakofony
Github user cakofony commented on the issue: https://github.com/apache/httpcomponents-core/pull/49 > Could there be fewer changes if a CopyOnWriteArrayList is used instead of an ArrayList in HeaderGroup? Possibly, I was worried about the performance aspects of CoW.