mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Fix timeout issue in devolo_home_network (#100350)
This commit is contained in:
parent
b0f32a3547
commit
b84076d3d6
@ -74,7 +74,7 @@ async def async_setup_entry( # noqa: C901
|
||||
"""Fetch data from API endpoint."""
|
||||
assert device.device
|
||||
try:
|
||||
async with asyncio.timeout(10):
|
||||
async with asyncio.timeout(30):
|
||||
return await device.device.async_check_firmware_available()
|
||||
except DeviceUnavailable as err:
|
||||
raise UpdateFailed(err) from err
|
||||
|
@ -8,7 +8,7 @@
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["devolo_plc_api"],
|
||||
"quality_scale": "platinum",
|
||||
"requirements": ["devolo-plc-api==1.4.0"],
|
||||
"requirements": ["devolo-plc-api==1.4.1"],
|
||||
"zeroconf": [
|
||||
{
|
||||
"type": "_dvl-deviceapi._tcp.local.",
|
||||
|
@ -675,7 +675,7 @@ denonavr==0.11.3
|
||||
devolo-home-control-api==0.18.2
|
||||
|
||||
# homeassistant.components.devolo_home_network
|
||||
devolo-plc-api==1.4.0
|
||||
devolo-plc-api==1.4.1
|
||||
|
||||
# homeassistant.components.directv
|
||||
directv==0.4.0
|
||||
|
@ -552,7 +552,7 @@ denonavr==0.11.3
|
||||
devolo-home-control-api==0.18.2
|
||||
|
||||
# homeassistant.components.devolo_home_network
|
||||
devolo-plc-api==1.4.0
|
||||
devolo-plc-api==1.4.1
|
||||
|
||||
# homeassistant.components.directv
|
||||
directv==0.4.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user