Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Tuomas Mäkinen <[email protected]>
  • Loading branch information
musitdev and tuommaki authored Mar 13, 2024
1 parent 3014f11 commit 5bfebc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/node/src/vmm/vm_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ impl VmService for VMServer {
);
}

//clean VM /Workspace data
// Clean VM `/workspace` data.
let workspace_path = TaskVmFile::get_workspace_path(&self.file_data_dir, request_tx_hash);
if let Err(err) = std::fs::remove_dir_all(workspace_path) {
tracing::warn!(
"Execution workplace for Tx:{} didn't clean correctly because {err}",
"Execution workspace for Tx:{} didn't clean correctly because {err}",
tx_hash
);
}
Expand Down
1 change: 0 additions & 1 deletion crates/shim/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ impl GRPCClient {
}

Ok(GRPCClient {
// workspace: workspace.to_string(),
client: Mutex::new(client),
rt,
})
Expand Down

0 comments on commit 5bfebc1

Please sign in to comment.