diff --git a/homeassistant/core.py b/homeassistant/core.py index cb6c3522496046..f48ae6c1956e6c 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -182,6 +182,8 @@ def async_start(self): 'report the following info at http://bit.ly/2ogP58T : %s', ', '.join(self.config.components)) + # Allow automations to set up the start triggers before changing state + yield from asyncio.sleep(0, loop=self.loop) self.state = CoreState.running _async_create_timer(self)