From 3b972d48e0d4507912c1950fc2dbed128d691b2f 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)