From e522f2f67ec19a6a7f80cc630d35c0d2bc5d2948 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 3 Apr 2024 00:36:55 -1000 Subject: [PATCH] Create bond fallback polling tasks eagerly (#114705) There was not reason to delay here --- homeassistant/components/bond/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/bond/entity.py b/homeassistant/components/bond/entity.py index 02137d27b3d..f547707d5f1 100644 --- a/homeassistant/components/bond/entity.py +++ b/homeassistant/components/bond/entity.py @@ -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."""