This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Description
Hi there!
Recently we ran into an issue where it seems like we were not handling a ConnectionError
correctly and tried to call connection.disconnect()
(see here ) when connection
had a None
value, which results in an unhandled exception being raised.
Seems like if you're using ClusterBlockingConnectionPool
, and time out before a connection is available a ConnectionError
will get raised, which gets mishandled in this case. The rest of the error handling seems correct to me, so I'm going to submit a PR that just checks that connection
is not None
before attempting to disconnect, and I'll be happy to add any other stuff that you think might be missing.