From d67179d9ae356d91f1c163100f0d0dfe54735131 Mon Sep 17 00:00:00 2001 From: Christophe Gagnier Date: Mon, 14 Sep 2026 15:56:08 -0400 Subject: [PATCH] Increase Hot Spring polling interval to 60 seconds (#182150) --- homeassistant/components/hotspring/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/hotspring/const.py b/homeassistant/components/hotspring/const.py index 25658c945221..410dcac3d0b1 100644 --- a/homeassistant/components/hotspring/const.py +++ b/homeassistant/components/hotspring/const.py @@ -6,4 +6,4 @@ import logging DOMAIN = "hotspring" LOGGER = logging.getLogger(__package__) -SCAN_INTERVAL = timedelta(seconds=30) +SCAN_INTERVAL = timedelta(seconds=60)