Close the tracker connection.
(self)
| 324 | raise RuntimeError(f"{self._addr!s} is not RPC Tracker") |
| 325 | |
| 326 | def close(self): |
| 327 | """Close the tracker connection.""" |
| 328 | if self._sock: |
| 329 | self._sock.close() |
| 330 | self._sock = None |
| 331 | |
| 332 | def summary(self): |
| 333 | """Get the summary dict of the tracker.""" |