Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
CAGS295 committed Sep 28, 2024
1 parent 8d4ced3 commit 7213875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectors/multiplexor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ where
let f = async move {
H::build(provider, s.as_slice(), sender)
.await
.expect("Building underlying handle for {s} failed.")
.expect(format!("Building underlying handle for {s:?} failed.").as_str())
};

handles.push(tokio::task::spawn_local(f));
Expand Down

0 comments on commit 7213875

Please sign in to comment.