fix: Display for out.status is "exit code (num)"
This commit is contained in:
parent
4784c5a370
commit
555b2d4732
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ async fn ping() -> Result<impl Responder> {
|
||||||
|
|
||||||
Ok(format!(
|
Ok(format!(
|
||||||
"exited with {}\n\nstdout:\n{}\n----\n\nstderr:\n{}",
|
"exited with {}\n\nstdout:\n{}\n----\n\nstderr:\n{}",
|
||||||
out.status,
|
out.status.code().unwrap_or(-1),
|
||||||
String::from_utf8_lossy(&out.stdout),
|
String::from_utf8_lossy(&out.stdout),
|
||||||
String::from_utf8_lossy(&out.stderr),
|
String::from_utf8_lossy(&out.stderr),
|
||||||
))
|
))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue