mirror of
https://github.com/home-assistant/core.git
synced 2025-07-12 15:57:06 +00:00
Handle offline gateways in devolo Home Control (#42897)
This commit is contained in:
parent
15da7b3ca6
commit
c7b2147e55
@ -2,6 +2,7 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|
||||||
|
from devolo_home_control_api.exceptions.gateway import GatewayOfflineError
|
||||||
from devolo_home_control_api.homecontrol import HomeControl
|
from devolo_home_control_api.homecontrol import HomeControl
|
||||||
from devolo_home_control_api.mydevolo import Mydevolo
|
from devolo_home_control_api.mydevolo import Mydevolo
|
||||||
|
|
||||||
@ -56,7 +57,7 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
except ConnectionError as err:
|
except (ConnectionError, GatewayOfflineError) as err:
|
||||||
raise ConfigEntryNotReady from err
|
raise ConfigEntryNotReady from err
|
||||||
|
|
||||||
for platform in PLATFORMS:
|
for platform in PLATFORMS:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user