Releases the connection back to the pool.
(self, connection: AbstractConnection)
| 1854 | raise |
| 1855 | |
| 1856 | async def release(self, connection: AbstractConnection): |
| 1857 | """Releases the connection back to the pool.""" |
| 1858 | async with self._condition: |
| 1859 | await super().release(connection) |
| 1860 | self._condition.notify() |