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:
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user