The pool should be able to deal with panics coming from the PoolManager and ErrorHandler methods.
The easiest solution would be to poison the pool like Mutex, but we could do better since the lock is never held during calls to user code. It's not clear if it's worth the effort though.
The pool should be able to deal with panics coming from the
PoolManager
andErrorHandler
methods.The easiest solution would be to poison the pool like
Mutex
, but we could do better since the lock is never held during calls to user code. It's not clear if it's worth the effort though.