Close the connection pool when done
(self)
| 192 | return self._pool |
| 193 | |
| 194 | async def close(self): |
| 195 | """Close the connection pool when done""" |
| 196 | if self._pool: |
| 197 | await self._pool.close() |
| 198 | |
| 199 | async def _execute_with_retry(self, query_func, max_retries=3, initial_backoff=0.1): |
| 200 | """ |
no outgoing calls
no test coverage detected