Create bond fallback polling tasks eagerly (#114705)
There was not reason to delay here
This commit is contained in:
parent
80e066a7a8
commit
e522f2f67e
1 changed files with 1 additions and 1 deletions
|
@ -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."""
|
||||
|
|
Loading…
Add table
Reference in a new issue