[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-942?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Oleg Kalnichevski updated HTTPCLIENT-942:
-----------------------------------------

    Fix Version/s: 4.1 Alpha3
         Priority: Minor  (was: Major)
      Component/s: Examples

> 1. if error happens in BufferedReader constructor (OutOfMemoryError, 
> StackOverflowError), reader.close() 
> is not called and connection is not released

If your application throws OutOfMemoryError or StackOverflowError, you have 
much more to worry about than a leaked connection, but strictly speaking you 
are correct

> 2. if error happens in reader.readLine(), reader.close() is called, but 
> httpget.abort() is not.

This is incorrect. HttpClient will automatically release the underlying 
connection upon an I/O error. Calling HttpGet#abort is not necessary.

Oleg

> ClientConnectionRelease example is incorrect
> --------------------------------------------
>
>                 Key: HTTPCLIENT-942
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-942
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: Examples
>            Reporter: Stepan Koltsov
>            Priority: Minor
>             Fix For: 4.1 Alpha3
>
>
> http://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.0.1/httpclient/src/examples/org/apache/http/examples/client/ClientConnectionRelease.java
> is incorrect: 
> 1. if error happens in BufferedReader constructor (OutOfMemoryError, 
> StackOverflowError), reader.close() is not called and connection is not 
> released
> 2. if error happens in reader.readLine(), reader.close() is called, but 
> httpget.abort() is not.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to