fix(dbus): Block on creation of zbus connection to avoid deadlock

A fix for the issue reported in
https://github.com/pop-os/cosmic-comp/pull/2450.

Using `block_on` in some places for zbus calls is fine (that's what
zbus's blocking API does; it has its own executor for background tasks),
but this is problematic with `async_once_cell`. If we also use that in
the calloop async executor.

I think ideally we should avoid blocking the main thread on any async
tasks, but for now we can just block in initialization here.
This commit is contained in:
Ian Douglas Scott 2026-06-09 07:51:44 -07:00 committed by Ashley Wulber
parent 94e9437c4e
commit 5153d497e7
3 changed files with 9 additions and 20 deletions

View file

@ -83,7 +83,6 @@ logind-zbus = { version = "5.3.2", optional = true }
futures-executor = { version = "0.3.32" }
futures-util = "0.3.32"
cgmath = "0.18.0"
async-once-cell = "0.5.4"
[dependencies.id_tree]
branch = "feature/copy_clone"