Re: found 3.3-head thread problem

2002-05-15 Thread costinm
On Wed, 15 May 2002, Keith Wannamaker wrote: Remember last week when I mentioned the thread problem in 3.3-head? In PoolTcpEndpoint, when there is a SocketException, we log a non-fatal error message. The problem began when Remy pointed the string manager to an empty bundle.

RE: found 3.3-head thread problem

2002-05-15 Thread Keith Wannamaker
This is why-- in PoolThreadEndpoint, a new thread is started only when a socket is accepted. Since the npe happened before this, the whole thing shut down without running another thread. So, we need to wrap for Throwable, and I think the best place to do it is around the accept in PTE.runIt.