Clarify
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 2 Feb 2011 14:55:36 +0000 (14:55 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 2 Feb 2011 14:55:36 +0000 (14:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1066489 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/changelog.xml
webapps/docs/config/context.xml

index 14e32ee..3a61fd2 100644 (file)
         (kkolinko)
       </update>
       <fix>
-        <bug>50642</bug>: Move the HttpClient keep-alive thread memory leak
-        protection from the JreMemoryLeakPreventionListener to the
-        WebappClassLoader since the thread that triggers the memory leak is
-        created on demand. (markt)
+        <bug>50642</bug>: Move the <code>sun.net.www.http.HttpClient</code>
+        keep-alive thread memory leak protection from the
+        JreMemoryLeakPreventionListener to the WebappClassLoader since the
+        thread that triggers the memory leak is created on demand. (markt)
       </fix>
       <fix>
         <bug>50673</bug>: Improve Catalina shutdown when running as a service.
index 2465bd1..d4e32b3 100644 (file)
       </attribute>
 
       <attribute name="clearReferencesHttpClientKeepAliveThread" required = "false">
-        <p>If <code>true</code> and an HttpClient keep-alive timer thread has
-        been started by this web application and is still running, Tomcat will
-        change the context class loader for that thread from the current
-        <code>WebappClassLoader</code> to
+        <p>If <code>true</code> and an <code>sun.net.www.http.HttpClient</code>
+        keep-alive timer thread has been started by this web application and is
+        still running, Tomcat will change the context class loader for that
+        thread from the current <code>WebappClassLoader</code> to
         <code>WebappClassLoader#parent</code> to prevent a memory leak. Note
         that the keep-alive timer thread will stop on its own once the
         keep-alives all expire however, on a busy system that might not happen