Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up
the issue with a local PostgreSQL install?: no
python:3.7.9-slim)uvloop?: only tried asyncio
I've found the following exception in our logs:
From what I can see, the call at
self._con.resetis raising aConnectionDoesNotExistError.Should the exception be reraised at line 218 if the exception is an
ConnectionDoesNotExistError(we know it's already closed)? It shouldn't even try toself._con.terminate()becauseself._conis already None (see the exception).Not sure if the comments in that code still apply for that type of exception