(self)
| 169 | self.try_connect(iter(self.secondary_addrs)) |
| 170 | |
| 171 | def clear_timeout(self) -> None: |
| 172 | if self.timeout is not None: |
| 173 | self.io_loop.remove_timeout(self.timeout) |
| 174 | |
| 175 | def set_connect_timeout( |
| 176 | self, connect_timeout: Union[float, datetime.timedelta] |
nothing calls this directly
no test coverage detected