Remove error handling for connecting task

Just let the exception propagate, even when stopping the connection
This commit is contained in:
atse 2024-09-09 11:42:12 +08:00
parent d576395ad2
commit 21a2764c3a
1 changed files with 4 additions and 10 deletions

View File

@ -191,21 +191,15 @@ class MainWindow(QtWidgets.QMainWindow):
)
)
self.thermostat.connection_state = ThermostatConnectionState.CONNECTING
try:
await self._connecting_task
except (OSError, asyncio.CancelledError) as exc:
await self.thermostat.end_session()
if isinstance(exc, asyncio.CancelledError):
return
raise
finally:
self._connecting_task = None
self.thermostat.connection_state = ThermostatConnectionState.CONNECTED
self.thermostat.start_watching()
case ThermostatConnectionState.CONNECTING:
self._connecting_task.cancel()
self.thermostat.connection_state = (
await self._thermostat.end_session()
self._thermostat.connection_state = (
ThermostatConnectionState.DISCONNECTED
)
self._connecting_task = None