sfackler / r2d2

A generic connection pool for Rust
Apache License 2.0
1.51k stars 82 forks source link

Need panic safety #7

Closed sfackler closed 8 years ago

sfackler commented 10 years ago

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.

sfackler commented 8 years ago

I'm going to close this - it hasn't come up as an issue in ~2 years.