cleanup a bit

This commit is contained in:
John Smith
2023-12-15 11:30:53 -05:00
committed by Christien Rioux
parent eecbb14774
commit bdb64a96ea
6 changed files with 256 additions and 71 deletions

View File

@@ -143,12 +143,6 @@ impl ClientApi {
// Wait for all connections to terminate
awg.wait().await;
// Clean up IPC path
if let Err(e) = std::fs::remove_file(&ipc_path) {
warn!("Unable to remove IPC socket: {}", e);
return Err(e);
}
Ok(())
}