Fix timeout issue in devolo_home_network (#100350)
parent
4d1ca93973
commit
94ef5f751f
|
@ -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.",
|
||||
|
|
|
@ -670,7 +670,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
|
||||
|
|
|
@ -544,7 +544,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…
Reference in New Issue