Skip to content

Commit

Permalink
Merge pull request #809 from qinwang-murphy/add_host_initiator_type
Browse files Browse the repository at this point in the history
add initiator type
  • Loading branch information
joseph-v authored Jan 26, 2022
2 parents 60914f9 + 416e1bf commit 122c928
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 122c928

Please sign in to comment.