From f150c9c65c4d0a574d898f61d95ec4b62c07ab88 Mon Sep 17 00:00:00 2001 From: Diogo Gomes Date: Tue, 24 Mar 2020 12:17:31 +0000 Subject: [PATCH] Increase timeout setting up IPMA (#33194) --- homeassistant/components/ipma/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ipma/weather.py b/homeassistant/components/ipma/weather.py index 1fce3922b58..62f1b0b39af 100644 --- a/homeassistant/components/ipma/weather.py +++ b/homeassistant/components/ipma/weather.py @@ -104,7 +104,7 @@ async def async_get_api(hass): async def async_get_location(hass, api, latitude, longitude): """Retrieve pyipma location, location name to be used as the entity name.""" - with async_timeout.timeout(10): + with async_timeout.timeout(30): location = await Location.get(api, float(latitude), float(longitude)) _LOGGER.debug(