From 29fa40a5cf276509160f3564d920a54c02294d76 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 22 Dec 2024 18:07:05 -1000 Subject: [PATCH] Add backup the list of integrations platforms to preload (#133856) `backup` is now at the top of the startup time list. This will help reduce it. --- homeassistant/loader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/loader.py b/homeassistant/loader.py index 1fa9d0cd49d..78c89b94765 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -78,6 +78,7 @@ BASE_PRELOAD_PLATFORMS = [ "repairs", "system_health", "trigger", + "backup", ]