Skip to content

Commit

Permalink
refactor(rumqttd): remove broker mut
Browse files Browse the repository at this point in the history
  • Loading branch information
crimx committed Sep 22, 2023
1 parent 22603d0 commit 235a5d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rumqttd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn main() {

// println!("{:#?}", configs);

let mut broker = Broker::new(configs);
let broker = Broker::new(configs);
broker.start().unwrap();
}

Expand Down

0 comments on commit 235a5d4

Please sign in to comment.