From 9ca9d7f48fab34bdeba1ad131871f3d0d1312425 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 8 Mar 2024 22:10:57 -1000 Subject: [PATCH] Use eager_start for tasks to register integration platforms (#112800) --- homeassistant/helpers/integration_platform.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/helpers/integration_platform.py b/homeassistant/helpers/integration_platform.py index e142f9c2e5a..9d98fa24b72 100644 --- a/homeassistant/helpers/integration_platform.py +++ b/homeassistant/helpers/integration_platform.py @@ -140,6 +140,7 @@ def _process_integration_platforms( hass, integration.domain, platform, + eager_start=True, ) ) ] @@ -249,7 +250,7 @@ async def _async_process_integration_platforms( continue if future := hass.async_run_hass_job( - process_job, hass, integration.domain, platform + process_job, hass, integration.domain, platform, eager_start=True ): futures.append(future)