Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Apr 2, 2023
1 parent c775c8a commit 7ea1475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/agent/onefuzz-agent/src/validations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ async fn get_logs(config: ValidationConfig) -> Result<()> {
None::<&PathBuf>,
MachineIdentity {
machine_id: Uuid::nil(),
machine_name: "".to_string(),
machine_name: String::new(),
scaleset_name: None,
},
);
let cmd = libfuzzer.build_std_command(None, None, None).await?;
let cmd = libfuzzer.build_std_command(None, None, None, None, None)?;
print_logs(cmd)?;
Ok(())
}
Expand Down

0 comments on commit 7ea1475

Please sign in to comment.