mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-25 18:16:32 +00:00
Fix dbus timeout on connection (#3258)
This commit is contained in:
parent
3d814f3c44
commit
4c9cbb112e
@ -101,7 +101,7 @@ class DBus:
|
|||||||
raise DBusParseError(
|
raise DBusParseError(
|
||||||
f"Can't parse introspect data: {err}", _LOGGER.error
|
f"Can't parse introspect data: {err}", _LOGGER.error
|
||||||
) from err
|
) from err
|
||||||
except EOFError:
|
except (EOFError, asyncio.TimeoutError):
|
||||||
_LOGGER.warning(
|
_LOGGER.warning(
|
||||||
"Busy system at %s - %s", self.bus_name, self.object_path
|
"Busy system at %s - %s", self.bus_name, self.object_path
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user