Skip to content

Commit

Permalink
fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcolombo committed Jun 5, 2024
1 parent 999afb0 commit 580f654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nexus/src/app/sagas/instance_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,15 +319,15 @@ pub async fn instance_ip_get_instance_state(
(InstanceState::Vmm, None) => {
return Err(ActionError::action_failed(Error::internal_error(
&format!(
"instance {} is in vmm state but has no valid vmm id",
"instance {} is in the 'VMM' state but has no VMM ID",
authz_instance.id(),
),
)));
}
(InstanceState::Vmm, Some(VmmState::Destroyed)) => {
return Err(ActionError::action_failed(Error::internal_error(
&format!(
"instance {} points to destroyed vmm",
"instance {} points to destroyed VMM",
authz_instance.id(),
),
)));
Expand Down

0 comments on commit 580f654

Please sign in to comment.