Skip to content

Commit

Permalink
Fix timeout issue in devolo_home_network (#100350)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun committed Sep 14, 2023
1 parent b0f32a3 commit b84076d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/devolo_home_network/__init__.py
Expand Up @@ -74,7 +74,7 @@ async def async_update_firmware_available() -> UpdateFirmwareCheck:
"""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
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/devolo_home_network/manifest.json
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Expand Up @@ -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
Expand Down

0 comments on commit b84076d

Please sign in to comment.