From 580f6542e7674c2c84908e00d54458786a1b617d Mon Sep 17 00:00:00 2001 From: Greg Colombo Date: Tue, 4 Jun 2024 19:38:06 +0000 Subject: [PATCH] fix capitalization --- nexus/src/app/sagas/instance_common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nexus/src/app/sagas/instance_common.rs b/nexus/src/app/sagas/instance_common.rs index 8b8f0dc1dd..ff2ebd517f 100644 --- a/nexus/src/app/sagas/instance_common.rs +++ b/nexus/src/app/sagas/instance_common.rs @@ -319,7 +319,7 @@ 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(), ), ))); @@ -327,7 +327,7 @@ pub async fn instance_ip_get_instance_state( (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(), ), )));