From 690f68c571cbb460cf0600acb51f570f030a02d6 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 dfac69b3aed..f76c78d52d2 100644 --- a/homeassistant/components/honeywell/climate.py +++ b/homeassistant/components/honeywell/climate.py @@ -507,6 +507,7 @@ class HoneywellUSThermostat(ClimateEntity): except ( AuthError, ClientConnectionError, + AscConnectionError, asyncio.TimeoutError, ): self._retry += 1