From 3d91d76d3d87dc28958c70c25cbd7568c8c20d4c Mon Sep 17 00:00:00 2001 From: Chuang Zheng <545029543@qq.com> Date: Thu, 25 Apr 2019 20:50:28 +0800 Subject: [PATCH] async_setup_component stage_1_domains (#23375) --- homeassistant/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index c2039161ceb..3959eb88035 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -355,7 +355,7 @@ async def _async_set_up_integrations( if stage_1_domains: await asyncio.gather(*[ async_setup_component(hass, domain, config) - for domain in logging_domains + for domain in stage_1_domains ]) # Load all integrations