From: Bill H. <bi...@lo...> - 2004-02-11 23:06:13
|
Hi Shaun, On Mon, 2004-02-09 at 23:45, Shaun Stepanowich wrote: > SEVERE: Housekeeping log.error( : > java.lang.ThreadDeath > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1252) > at > org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1212) > at > java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302) > at > com.enertiasoft.util.pooling.ConnectionPoolStateListener.upStateChanged(Unknown Source) > at > org.logicalcobwebs.proxool.CompositeStateListener.upStateChanged(CompositeStateListener.java:40) I agree with Christian. The only direct control over that Thread by Proxool is to cancel it gracefully. That is, after it has completed its sweep. It seems that your Thread is dying half way through a sweep. Does it die at different places each time? It's a daemon thread, so it will die if the JVM dies. You say you get "a bunch" - can you be more precise? Every 30 seconds? - Bill |