Create bond fallback polling tasks eagerly (#114705)

There was not reason to delay here
This commit is contained in:
J. Nick Koston 2024-04-03 00:36:55 -10:00 committed by GitHub
parent 80e066a7a8
commit e522f2f67e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -128,7 +128,7 @@ class BondEntity(Entity):
_FALLBACK_SCAN_INTERVAL,
)
return
self.hass.async_create_task(self._async_update())
self.hass.async_create_task(self._async_update(), eager_start=True)
async def _async_update(self) -> None:
"""Fetch via the API."""