Add missing exception handlers to radiotherm (#73349)
parent
cb1011156d
commit
8c96845135
|
@ -4,6 +4,7 @@ from __future__ import annotations
|
|||
from collections.abc import Coroutine
|
||||
from socket import timeout
|
||||
from typing import Any, TypeVar
|
||||
from urllib.error import URLError
|
||||
|
||||
from radiotherm.validate import RadiothermTstatError
|
||||
|
||||
|
@ -31,6 +32,9 @@ async def _async_call_or_raise_not_ready(
|
|||
except RadiothermTstatError as ex:
|
||||
msg = f"{host} was busy (invalid value returned): {ex}"
|
||||
raise ConfigEntryNotReady(msg) from ex
|
||||
except (OSError, URLError) as ex:
|
||||
msg = f"{host} connection error: {ex}"
|
||||
raise ConfigEntryNotReady(msg) from ex
|
||||
except timeout as ex:
|
||||
msg = f"{host} timed out waiting for a response: {ex}"
|
||||
raise ConfigEntryNotReady(msg) from ex
|
||||
|
|
|
@ -4,6 +4,7 @@ from __future__ import annotations
|
|||
import logging
|
||||
from socket import timeout
|
||||
from typing import Any
|
||||
from urllib.error import URLError
|
||||
|
||||
from radiotherm.validate import RadiothermTstatError
|
||||
import voluptuous as vol
|
||||
|
@ -29,7 +30,7 @@ async def validate_connection(hass: HomeAssistant, host: str) -> RadioThermInitD
|
|||
"""Validate the connection."""
|
||||
try:
|
||||
return await async_get_init_data(hass, host)
|
||||
except (timeout, RadiothermTstatError) as ex:
|
||||
except (timeout, RadiothermTstatError, URLError, OSError) as ex:
|
||||
raise CannotConnect(f"Failed to connect to {host}: {ex}") from ex
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ from __future__ import annotations
|
|||
from datetime import timedelta
|
||||
import logging
|
||||
from socket import timeout
|
||||
from urllib.error import URLError
|
||||
|
||||
from radiotherm.validate import RadiothermTstatError
|
||||
|
||||
|
@ -38,6 +39,9 @@ class RadioThermUpdateCoordinator(DataUpdateCoordinator[RadioThermUpdate]):
|
|||
except RadiothermTstatError as ex:
|
||||
msg = f"{self._description} was busy (invalid value returned): {ex}"
|
||||
raise UpdateFailed(msg) from ex
|
||||
except (OSError, URLError) as ex:
|
||||
msg = f"{self._description} connection error: {ex}"
|
||||
raise UpdateFailed(msg) from ex
|
||||
except timeout as ex:
|
||||
msg = f"{self._description}) timed out waiting for a response: {ex}"
|
||||
raise UpdateFailed(msg) from ex
|
||||
|
|
Loading…
Reference in New Issue