\ Stop the control socket server.
(self)
| 977 | self._control_server = None |
| 978 | |
| 979 | def _stop_control_server(self): |
| 980 | """\ |
| 981 | Stop the control socket server. |
| 982 | """ |
| 983 | if self._control_server: |
| 984 | try: |
| 985 | self._control_server.stop() |
| 986 | except Exception as e: |
| 987 | self.log.debug("Error stopping control server: %s", e) |
| 988 | self._control_server = None |