From 416e1bf71199aa25b252d867532423865476d6a6 Mon Sep 17 00:00:00 2001 From: wangqin <442577631@qq.com> Date: Tue, 25 Jan 2022 19:45:52 +0800 Subject: [PATCH] add initiator type --- delfin/common/constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/delfin/common/constants.py b/delfin/common/constants.py index bff18dc3c..6872136d9 100644 --- a/delfin/common/constants.py +++ b/delfin/common/constants.py @@ -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