1
mirror of https://github.com/home-assistant/core synced 2024-09-12 15:16:21 +02:00

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
This commit is contained in:
Sebastian Nohn 2023-12-07 07:44:19 +01:00 committed by GitHub
parent 0b6665ed09
commit 22119a2fd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: