Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelovuo committed Aug 1, 2024
1 parent 077e8e5 commit dbacc50
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions examples/hello_world_publisher/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,8 @@ fn main() {
// set up async executor to run concurrent tasks
smol::block_on(async {
let mut datawriter_event_stream = writer.as_async_status_stream();
let (write_trigger_sender, write_trigger_receiver) =
smol::channel::bounded(1);
let mut match_timeout_timer =
futures::FutureExt::fuse(Timer::after(Duration::from_secs(10)));
let (write_trigger_sender, write_trigger_receiver) = smol::channel::bounded(1);
let mut match_timeout_timer = futures::FutureExt::fuse(Timer::after(Duration::from_secs(10)));

println!("Ready to say hello");
loop {
Expand Down

0 comments on commit dbacc50

Please sign in to comment.