Author: kfujino
Date: Tue Jan 12 05:25:37 2016
New Revision: 1724159

URL: http://svn.apache.org/viewvc?rev=1724159&view=rev
Log:
Ensure that asynchronous session replication thread is a daemon thread.

Modified:
    
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
    tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java?rev=1724159&r1=1724158&r2=1724159&view=diff
==============================================================================
--- 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
 (original)
+++ 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
 Tue Jan 12 05:25:37 2016
@@ -63,6 +63,7 @@ public class TcclThreadFactory implement
         } else {
             t.setContextClassLoader(this.getClass().getClassLoader());
         }
+        t.setDaemon(true);
         return t;
     }
 

Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml?rev=1724159&r1=1724158&r2=1724159&view=diff
==============================================================================
--- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Tue Jan 12 05:25:37 2016
@@ -194,6 +194,10 @@
         Add support for the shutdown notification of local members in the 
static
         cluster. (kfujino)
       </fix>
+      <fix>
+        Ensure that asynchronous session replication thread is a daemon thread.
+        (kfujino)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Other">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to