From ff351c7f6d688ba3fa85ee8b5d5de20c4f27d791 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 28 May 2020 09:27:48 +0200 Subject: [PATCH] HA landing page retry 30sec (#1756) --- supervisor/homeassistant.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/homeassistant.py b/supervisor/homeassistant.py index feeffe657..0aeba636e 100644 --- a/supervisor/homeassistant.py +++ b/supervisor/homeassistant.py @@ -253,9 +253,9 @@ class HomeAssistant(JsonConfig, CoreSysAttributes): while True: if not self.sys_updater.image_homeassistant: _LOGGER.warning( - "Found no information about Home Assistant. Retry in 15sec" + "Found no information about Home Assistant. Retry in 30sec" ) - await asyncio.sleep(15) + await asyncio.sleep(30) await self.sys_updater.reload() continue