From 7867eded5043a8aa282180028053c39aebeeb957 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 18 Feb 2019 09:51:21 +0100 Subject: [PATCH] Increase wait time for home assistant startup --- hassio/homeassistant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/homeassistant.py b/hassio/homeassistant.py index e1d9ea3fd..172d0ae77 100644 --- a/hassio/homeassistant.py +++ b/hassio/homeassistant.py @@ -466,7 +466,7 @@ class HomeAssistant(JsonConfig, CoreSysAttributes): return False while True: - await asyncio.sleep(10) + await asyncio.sleep(5) # 1: Check if Container is is_running if not await self.instance.is_running():