From 52957849cf4207f276139032bf06ad316415a389 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 6 Apr 2024 10:59:24 -1000 Subject: [PATCH] Make eager_start default to True for config entry async_create_background_task (#115050) --- homeassistant/config_entries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a31728e7121..413637fd726 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -1080,7 +1080,7 @@ class ConfigEntry: hass: HomeAssistant, target: Coroutine[Any, Any, _R], name: str, - eager_start: bool = False, + eager_start: bool = True, ) -> asyncio.Task[_R]: """Create a background task tied to the config entry lifecycle.