Skip to content

Commit

Permalink
Fix value error for guest_vm_type
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliDeng committed Nov 21, 2024
1 parent ae3e43e commit 9b1b352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisa/sut_orchestrator/libvirt/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class NodeContext:
vm_name: str = ""
kernel_source_path: str = ""
kernel_path: str = ""
guest_vm_type: GuestVmType = GuestVmType.Standard
guest_vm_type: GuestVmType = field(default_factory=lambda: GuestVmType.Standard)
cloud_init_file_path: str = ""
ignition_file_path: str = ""
os_disk_source_file_path: Optional[str] = None
Expand Down

0 comments on commit 9b1b352

Please sign in to comment.