Increase frequency of weatherkit updates (#105094)

pull/105104/head
TJ Horner 2023-12-05 11:45:26 -08:00 committed by GitHub
parent eadcceeed1
commit 19e193ae1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class WeatherKitDataUpdateCoordinator(DataUpdateCoordinator):
hass=hass,
logger=LOGGER,
name=DOMAIN,
update_interval=timedelta(minutes=15),
update_interval=timedelta(minutes=5),
)
async def update_supported_data_sets(self):

View File

@ -23,7 +23,7 @@ async def test_failed_updates(hass: HomeAssistant) -> None:
):
async_fire_time_changed(
hass,
utcnow() + timedelta(minutes=15),
utcnow() + timedelta(minutes=5),
)
await hass.async_block_till_done()