Skip to content

Commit

Permalink
Sean's feedback
Browse files Browse the repository at this point in the history
Created using spr 1.3.6-beta.1
  • Loading branch information
papertigers committed Dec 11, 2024
2 parents 3fa84e3 + 965b0b4 commit 7b67092
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sled-agent/src/sled_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ impl SledAgent {
pub(crate) async fn support_pstack_info(
&self,
) -> Vec<Result<SledDiagnosticsCmdOutput, SledDiagnosticsCmdError>> {
sled_diagnostics::pargs_oxide_processes(&self.log).await
sled_diagnostics::pstack_oxide_processes(&self.log).await
}
}

Expand Down
4 changes: 2 additions & 2 deletions sled-diagnostics/src/queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ pub trait SledDiagnosticsCommandHttpOutput {
#[serde(rename_all = "snake_case")]
pub enum SledDiagnosticsQueryOutput {
Success {
/// The command and it's arguments.
/// The command and its arguments.
command: String,
/// Any stdout/stderr produced by the command.
stdio: String,
/// The exit status of the command. This will be the exit code (if any)
/// and exit reason such as from a signal.
exit_status: String,
/// The exit code if one was present when the comman exited.
/// The exit code if one was present when the command exited.
exit_code: Option<i32>,
},
Failure {
Expand Down

0 comments on commit 7b67092

Please sign in to comment.