From 91ab0c321775df8ef9cfc3e9c327295d77f48ea8 Mon Sep 17 00:00:00 2001 From: Mick Date: Sat, 10 Aug 2024 08:20:38 +0000 Subject: [PATCH] Increase time-out --- 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)