ribragimov
Results
2
comments of
ribragimov
Got this error too. And think i get the point. When we was release the connection to the pool we need to call `reset_state`. Then connection will be passed to...
@tiejunhu you can use my hint right now. ```python ... try: await cursor.execute(...) except (SocketTimeoutError, NetworkError, gaierror): await conn.close() ``` You must close connection mannually on some network errors