From 7e1b179cdd2c0f99a632097bd41749e68ecb00d9 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 29 Aug 2020 12:03:29 +0200 Subject: [PATCH] Fix error handling unsupported (#1994) * Try to catch unhealthy * revert --- supervisor/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/core.py b/supervisor/core.py index 8943104f4..9012c6788 100644 --- a/supervisor/core.py +++ b/supervisor/core.py @@ -149,7 +149,7 @@ class Core(CoreSysAttributes): # Check if image names from denylist exist try: if await self.sys_run_in_executor(self.sys_docker.check_denylist_images): - self.coresys.supported = False + self.supported = False self.healthy = False except DockerAPIError: self.healthy = False