update failure description

This commit is contained in:
Josh Patterson
2025-10-10 17:21:09 -04:00
parent 09d699432a
commit fe3caf66a1
2 changed files with 3 additions and 3 deletions

View File

@@ -831,13 +831,13 @@ def process_vm_creation(hypervisor_path: str, vm_config: dict) -> None:
if not has_space: if not has_space:
log.error("VM: %s - %s", vm_name, space_error) log.error("VM: %s - %s", vm_name, space_error)
# Send Volume nsm Create Failed status event # Send Hypervisor NSM Disk Full status event
try: try:
subprocess.run([ subprocess.run([
'so-salt-emit-vm-deployment-status-event', 'so-salt-emit-vm-deployment-status-event',
'-v', vm_name, '-v', vm_name,
'-H', hypervisor, '-H', hypervisor,
'-s', 'Volume nsm Create Failed' '-s', 'Hypervisor NSM Disk Full'
], check=True) ], check=True)
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
log.error("Failed to emit volume create failed event for %s: %s", vm_name, str(e)) log.error("Failed to emit volume create failed event for %s: %s", vm_name, str(e))

View File

@@ -3,7 +3,7 @@
{# Define the list of process steps in order (case-sensitive) #} {# Define the list of process steps in order (case-sensitive) #}
{% set PROCESS_STEPS = [ {% set PROCESS_STEPS = [
'Processing', 'Processing',
'Volume nsm Create Failed', 'Hypervisor NSM Disk Full',
'IP Configuration', 'IP Configuration',
'Starting Create', 'Starting Create',
'Executing Deploy Script', 'Executing Deploy Script',