Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
XOR-op committed Jul 5, 2024
1 parent 91315a4 commit 234b29a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boltconn/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ impl App {
}
}

let uds_contoller = UdsController::new(controller.clone());
let uds_controller = UdsController::new(controller.clone());
let uds_listener2 = uds_listener.clone();
tokio::spawn(async move { uds_contoller.run(uds_listener2).await });
tokio::spawn(async move { uds_controller.run(uds_listener2).await });

// start web controller
if let Some(web_cfg) = &config.web_controller {
Expand Down

0 comments on commit 234b29a

Please sign in to comment.