From 208f3a2e18b2ebccdcb7874589d69d25b479eb04 Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Sat, 10 Aug 2024 10:22:45 +0200 Subject: [PATCH] Increase time-out (#151) --- custom_components/sagemcom_fast/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sagemcom_fast/coordinator.py b/custom_components/sagemcom_fast/coordinator.py index c6e9204..62650ae 100644 --- a/custom_components/sagemcom_fast/coordinator.py +++ b/custom_components/sagemcom_fast/coordinator.py @@ -49,7 +49,7 @@ def __init__( async def _async_update_data(self) -> dict[str, Device]: """Update hosts data.""" try: - async with async_timeout.timeout(10): + async with async_timeout.timeout(25): try: await self.client.login() await asyncio.sleep(1)