diff --git a/homeassistant/components/oncue/const.py b/homeassistant/components/oncue/const.py index bf248369987..7118944a4ec 100644 --- a/homeassistant/components/oncue/const.py +++ b/homeassistant/components/oncue/const.py @@ -3,10 +3,15 @@ import asyncio import aiohttp +from aiooncue import ServiceFailedException DOMAIN = "oncue" -CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError) +CONNECTION_EXCEPTIONS = ( + asyncio.TimeoutError, + aiohttp.ClientError, + ServiceFailedException, +) CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished" diff --git a/homeassistant/components/oncue/manifest.json b/homeassistant/components/oncue/manifest.json index 02c953736bb..24414e4efb8 100644 --- a/homeassistant/components/oncue/manifest.json +++ b/homeassistant/components/oncue/manifest.json @@ -12,5 +12,5 @@ "documentation": "https://www.home-assistant.io/integrations/oncue", "iot_class": "cloud_polling", "loggers": ["aiooncue"], - "requirements": ["aiooncue==0.3.4"] + "requirements": ["aiooncue==0.3.5"] } diff --git a/requirements_all.txt b/requirements_all.txt index f33872e1f9a..76cbe362ded 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -301,7 +301,7 @@ aionanoleaf==0.2.1 aionotion==2023.05.5 # homeassistant.components.oncue -aiooncue==0.3.4 +aiooncue==0.3.5 # homeassistant.components.openexchangerates aioopenexchangerates==0.4.0 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 8196e2ee6ab..6fcf65c18a1 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -273,7 +273,7 @@ aionanoleaf==0.2.1 aionotion==2023.05.5 # homeassistant.components.oncue -aiooncue==0.3.4 +aiooncue==0.3.5 # homeassistant.components.openexchangerates aioopenexchangerates==0.4.0