Increase ping update interval to 30 seconds (#105199)

pull/105232/head
Jan-Philipp Benecke 2023-12-07 09:50:21 +01:00 committed by GitHub
parent f8c216a5ea
commit 0728106c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class PingUpdateCoordinator(DataUpdateCoordinator[PingResult]):
hass, hass,
_LOGGER, _LOGGER,
name=f"Ping {ping.ip_address}", name=f"Ping {ping.ip_address}",
update_interval=timedelta(seconds=15), update_interval=timedelta(seconds=30),
) )
async def _async_update_data(self) -> PingResult: async def _async_update_data(self) -> PingResult: