1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Fix dbus timeout on connection (#3258)

This commit is contained in:
Pascal Vizeli
2021-10-25 14:19:09 +02:00
committed by GitHub
parent 3d814f3c44
commit 4c9cbb112e

View File

@@ -101,7 +101,7 @@ class DBus:
raise DBusParseError(
f"Can't parse introspect data: {err}", _LOGGER.error
) from err
except EOFError:
except (EOFError, asyncio.TimeoutError):
_LOGGER.warning(
"Busy system at %s - %s", self.bus_name, self.object_path
)