mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-26 21:58:10 +01:00
Clean up some stuff and move the config for wlcs tests
This commit is contained in:
parent
e8b8a33bfc
commit
fb8b6e166c
8 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ members = [
|
|||
"api/rust",
|
||||
"api/rust/pinnacle-api-macros",
|
||||
"wlcs_pinnacle",
|
||||
"wlcs_pinnacle/wlcs_pinnacle_config",
|
||||
"wlcs_pinnacle/config",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
|
|
|
@ -138,7 +138,7 @@ impl Wlcs for PinnacleHandle {
|
|||
fn stop(&mut self) {
|
||||
if let Some(conn) = self.server_conn.take() {
|
||||
let _ = conn.sender.send(WlcsEvent::Stop);
|
||||
conn.join.join().expect("failed to join");
|
||||
let _ = conn.join.join();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use std::{sync::Arc, thread, time::Duration};
|
||||
use std::{sync::Arc, time::Duration};
|
||||
|
||||
use pinnacle::{
|
||||
backend::dummy::setup_dummy,
|
||||
|
|
Loading…
Reference in a new issue