From fc349b08755d115356700cb5e71f0792d0a7fa42 Mon Sep 17 00:00:00 2001 From: mkmer Date: Sat, 23 Dec 2023 21:11:51 -0500 Subject: [PATCH] Missing exception on relogin in Honeywell (#106324) Missing exception on relogin --- homeassistant/components/honeywell/climate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/honeywell/climate.py b/homeassistant/components/honeywell/climate.py index 7281c5740ef..2f06dd1cfbe 100644 --- a/homeassistant/components/honeywell/climate.py +++ b/homeassistant/components/honeywell/climate.py @@ -501,6 +501,7 @@ class HoneywellUSThermostat(ClimateEntity): except ( AuthError, ClientConnectionError, + AscConnectionError, asyncio.TimeoutError, ): self._retry += 1