Disconnects everything, stops all polling
This commit is contained in:
atse 2023-08-08 16:56:36 +08:00 committed by Tse Kwok Yan
parent 49bf4ebc92
commit 790ce88345
1 changed files with 7 additions and 6 deletions

View File

@ -557,8 +557,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
@asyncClose
async def closeEvent(self, event):
await self._on_connection_changed(False)
await self.client.disconnect()
await self.bail()
@asyncSlot()
async def on_connect_btn_clicked(self):
@ -576,13 +575,15 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
return
await self._on_connection_changed(True)
else:
await self._on_connection_changed(False)
await self.client.disconnect()
await self.bail()
except (OSError, TimeoutError, asyncio.TimeoutError) as e: # TODO: Remove asyncio.TimeoutError in Python 3.11
logging.error(f"Failed communicating to {host}:{port}: {e}")
await self._on_connection_changed(False)
await self.client.disconnect()
await self.bail()
async def bail(self):
await self._on_connection_changed(False)
await self.client.disconnect()
@pyqtSlot(list)
def plot(self, report):