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

Commit

Permalink
apply Tuomas suggestion (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
musitdev authored Feb 26, 2024
1 parent 5e84c51 commit a0baf84
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub enum JsonProgramData {
Input {
// path to the local file or Hash os the distant file
local_path: String,
// Path of the file in the VM containing /warspace directory
// Path of the file in the VM containing /workspace directory
vm_path: String,
// Optional url to the file if the file hash is provided by file
file_url: Option<String>,
Expand Down
1 change: 0 additions & 1 deletion crates/node/src/types/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ use std::path::PathBuf;
// Describe a file use by an executed task.
#[derive(Clone, Debug)]
pub struct TaskVmFile<E> {
// pub node_file_path: String,
vm_file_path: String,
extension: E,
}
Expand Down
1 change: 0 additions & 1 deletion crates/node/src/vmm/vm_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ impl VmService for VMServer {
}))
.await
{
// tracing::error!("send {} bytes from file {}: {}", n, &req.path, &e);
tracing::error!("send {} bytes from file: {}", n, &e);
break;
}
Expand Down

0 comments on commit a0baf84

Please sign in to comment.