Skip to content

Commit

Permalink
Update schema.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SRIKKANTH committed Nov 23, 2024
1 parent c172b96 commit 96a0f9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lisa/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,18 +432,18 @@ class DiskType(str, Enum):


class StorageInterfaceType(str, Enum):
NVME = "NVMe"
SCSI = "SCSI"
SCSI = constants.STORAGE_INTERFACE_TYPE_SCSI
NVME = constants.STORAGE_INTERFACE_TYPE_NVME


class DiskControllerType(str, Enum):
SCSI = StorageInterfaceType.SCSI
NVME = StorageInterfaceType.NVME
SCSI = constants.STORAGE_INTERFACE_TYPE_SCSI
NVME = constants.STORAGE_INTERFACE_TYPE_NVME


class ResourceDiskType(str, Enum):
SCSI = StorageInterfaceType.SCSI
NVME = StorageInterfaceType.NVME
SCSI = constants.STORAGE_INTERFACE_TYPE_SCSI
NVME = constants.STORAGE_INTERFACE_TYPE_NVME


disk_controller_type_priority: List[DiskControllerType] = [
Expand Down

0 comments on commit 96a0f9d

Please sign in to comment.