From c4c21bc8ea19d99ba391f741c8a86a37790dbd00 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 28 Apr 2024 08:57:31 -0500 Subject: [PATCH] Fix bluetooth adapter discovery delaying startup and shutdown (#116335) --- homeassistant/components/bluetooth/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/bluetooth/__init__.py b/homeassistant/components/bluetooth/__init__.py index 4768d58379a..acc38cad58b 100644 --- a/homeassistant/components/bluetooth/__init__.py +++ b/homeassistant/components/bluetooth/__init__.py @@ -152,6 +152,7 @@ async def _async_start_adapter_discovery( cooldown=BLUETOOTH_DISCOVERY_COOLDOWN_SECONDS, immediate=False, function=_async_rediscover_adapters, + background=True, ) @hass_callback