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

View File

@@ -128,7 +128,7 @@ class BondEntity(Entity):
_FALLBACK_SCAN_INTERVAL, _FALLBACK_SCAN_INTERVAL,
) )
return 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: async def _async_update(self) -> None:
"""Fetch via the API.""" """Fetch via the API."""