Skip to content

Commit

Permalink
⬆️ zb: update async-broadcast to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVerevkin committed Oct 17, 2023
1 parent 8498065 commit a4cb91f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zbus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ futures-util = { version = "0.3.25", default-features = false, features = [
"std",
] }
async-lock = { version = "2.6.0", optional = true }
async-broadcast = "0.5.0"
async-broadcast = "0.6.0"
async-executor = { version = "1.5.0", optional = true }
blocking = { version = "1.0.2", optional = true }
async-task = { version = "4.3.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion zbus/tests/e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@ fn iface_and_proxy_unix_p2p() {
#[instrument]
async fn iface_and_proxy_(p2p: bool) {
let event = event_listener::Event::new();
let listen = event.listen();
let guid = zbus::Guid::generate();

let (service_conn_builder, client_conn_builder) = if p2p {
Expand Down Expand Up @@ -773,6 +772,7 @@ async fn iface_and_proxy_(p2p: bool) {
debug!("Client connection created: {:?}", client_conn);
debug!("Service connection created: {:?}", service_conn);

let listen = event.listen();
let child = client_conn
.executor()
.spawn(my_iface_test(client_conn.clone(), event), "client_task");
Expand Down

0 comments on commit a4cb91f

Please sign in to comment.