Skip to content

Commit

Permalink
add initiator type
Browse files Browse the repository at this point in the history
  • Loading branch information
qinwang-murphy committed Jan 25, 2022
1 parent 60914f9 commit 416e1bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion delfin/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,11 @@ class InitiatorType(object):
FC = 'fc'
ISCSI = 'iscsi'
NVME_OVER_ROCE = 'roce'
SAS = 'sas'
NVME_OVER_FABRIC = 'nvme-of'
UNKNOWN = 'unknown'

ALL = (FC, ISCSI, NVME_OVER_ROCE, UNKNOWN)
ALL = (FC, ISCSI, NVME_OVER_ROCE, SAS, NVME_OVER_FABRIC, UNKNOWN)


# Enumerations for alert severity
Expand Down

0 comments on commit 416e1bf

Please sign in to comment.