Skip to content

Commit

Permalink
address Andrew's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveL-MSFT committed Oct 4, 2023
1 parent bc357a1 commit db2d403
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion dsc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn terminate_subprocesses(sys: &System, process: &Process) {

info!("Terminating process {} {}", process.name(), process.pid());
if !process.kill() {
info!("Failed to terminate process {} {}", process.name(), process.pid());
error!("Failed to terminate process {} {}", process.name(), process.pid());
}
}

Expand Down
1 change: 0 additions & 1 deletion tools/dsctest/src/sleep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Returns information about the operating system.
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct Sleep {
Expand Down

0 comments on commit db2d403

Please sign in to comment.