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:
parent
0b6665ed09
commit
22119a2fd8
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue