You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Takashi Narita (JIRA)" <ji...@apache.org> on 2014/07/02 06:53:26 UTC

[jira] [Created] (HTTPCLIENT-1525) The TimeUnit of Keepalive only support ”TimeUnit.MILLISECONDS"

Takashi Narita created HTTPCLIENT-1525:
------------------------------------------

             Summary: The TimeUnit of Keepalive only support ”TimeUnit.MILLISECONDS"
                 Key: HTTPCLIENT-1525
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1525
             Project: HttpComponents HttpClient
          Issue Type: Bug
          Components: HttpClient
    Affects Versions: 4.4 Alpha1, 4.3.4
            Reporter: Takashi Narita
            Priority: Minor


Hi.
The case when tunit non-TimeUnit.MILLISECONDS, the following is bug.

[https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.4-alpha1/httpclient/src/main/java/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.java]

{code:title=org/apache/http/impl/conn/PoolingHttpClientConnectionManager.java|borderStyle=solid}
    public void releaseConnection(
            final HttpClientConnection managedConn,
            final Object state,
            final long keepalive, final TimeUnit tunit) {
...
                        if (keepalive > 0) {
                            s = "for " + (double) keepalive / 1000 + " seconds";
                        } else {
...
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

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