Skip to content

Commit

Permalink
typo: internal_message should be external_message (#1194)
Browse files Browse the repository at this point in the history
  • Loading branch information
nshalman authored Dec 6, 2024
1 parent b604134 commit 4f8a753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dropshot/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ impl HandlerError {
pub(crate) fn external_message(&self) -> Option<&String> {
match self {
Self::Handler { .. } => None,
Self::Dropshot(ref e) => Some(&e.internal_message),
Self::Dropshot(ref e) => Some(&e.external_message),
}
}

Expand Down

0 comments on commit 4f8a753

Please sign in to comment.