Called after pool/connection is created. Records the bound loop.
(self)
| 144 | return self._bound_loop is current |
| 145 | |
| 146 | async def _post_connect(self) -> None: |
| 147 | """Called after pool/connection is created. Records the bound loop.""" |
| 148 | self._bound_loop = asyncio.get_running_loop() |
| 149 | |
| 150 | async def create_connection(self, with_db: bool) -> None: |
| 151 | """ |
no outgoing calls
no test coverage detected