HA landing page retry 30sec (#1756)

This commit is contained in:
Pascal Vizeli 2020-05-28 09:27:48 +02:00 committed by GitHub
parent 960b00d85a
commit ff351c7f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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