Merge pull request #924 from home-assistant/feat-wait-time

Increase wait time for home assistant startup
This commit is contained in:
Pascal Vizeli 2019-02-18 16:24:21 +01:00 committed by GitHub
commit b6df37628d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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():