(self)
| 456 | self.conn_mgr = _ConnectionManager(conn, False) |
| 457 | |
| 458 | async def unpin(self) -> None: |
| 459 | self.pinned_address = None |
| 460 | if self.conn_mgr: |
| 461 | await self.conn_mgr.close() |
| 462 | self.conn_mgr = None |
| 463 | |
| 464 | async def reset(self) -> None: |
| 465 | await self.unpin() |