User: chirino
Date: 01/06/26 20:08:21
Modified: src/main/org/jboss/jms/asf StdServerSessionPool.java
Log:
I fixed the leaky ThreadGroup problem with the ASF and
improved the output the listThreadDump function in the Info MBean
Revision Changes Path
1.7 +1 -3 jboss/src/main/org/jboss/jms/asf/StdServerSessionPool.java
Index: StdServerSessionPool.java
===================================================================
RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/jms/asf/StdServerSessionPool.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- StdServerSessionPool.java 2001/06/24 22:07:40 1.6
+++ StdServerSessionPool.java 2001/06/27 03:08:21 1.7
@@ -79,8 +79,6 @@
this.transacted= transacted;
this.poolSize= maxSession;
-
- threadGroup = new ThreadGroup("ASF Session Pool Threads");
executor = new PooledExecutor(poolSize);
executor.setMinimumPoolSize(0);
executor.setKeepAliveTime(1000*30);
@@ -202,7 +200,7 @@
}
private PooledExecutor executor;
- private ThreadGroup threadGroup;
+ static private ThreadGroup threadGroup = new ThreadGroup("ASF Session Pool
Threads");
Executor getExecutor() {
return executor;
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development