Author: kfujino
Date: Tue Jan 12 05:26:27 2016
New Revision: 1724160
URL: http://svn.apache.org/viewvc?rev=1724160&view=rev
Log:
Ensure that asynchronous session replication thread is a daemon thread.
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java?rev=1724160&r1=1724159&r2=1724160&view=diff
==============================================================================
---
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
(original)
+++
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/TcclThreadFactory.java
Tue Jan 12 05:26:27 2016
@@ -64,6 +64,7 @@ public class TcclThreadFactory implement
} else {
t.setContextClassLoader(this.getClass().getClassLoader());
}
+ t.setDaemon(true);
return t;
}
Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1724160&r1=1724159&r2=1724160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Tue Jan 12 05:26:27 2016
@@ -187,6 +187,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: [email protected]
For additional commands, e-mail: [email protected]