From 22119a2fd86658cf272032651e5701e90fdad6dd Mon Sep 17 00:00:00 2001 From: Sebastian Nohn Date: Thu, 7 Dec 2023 07:44:19 +0100 Subject: [PATCH] Set ping interval to 15 seconds instead of 5 minutes (#105191) set ping interval to a more sane value of 15 seconds instead of 5 minutes. fixes home-assistant/core#105163 --- homeassistant/components/ping/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ping/coordinator.py b/homeassistant/components/ping/coordinator.py index dadd105b606..5fe9d692bc3 100644 --- a/homeassistant/components/ping/coordinator.py +++ b/homeassistant/components/ping/coordinator.py @@ -40,7 +40,7 @@ class PingUpdateCoordinator(DataUpdateCoordinator[PingResult]): hass, _LOGGER, name=f"Ping {ping.ip_address}", - update_interval=timedelta(minutes=5), + update_interval=timedelta(seconds=15), ) async def _async_update_data(self) -> PingResult: