Skip to content

Commit

Permalink
Add a new storage status "unknown".
Browse files Browse the repository at this point in the history
  • Loading branch information
littlehotcx committed Dec 4, 2021
1 parent d67a1de commit ccc0935
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion delfin/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ class StorageStatus(object):
OFFLINE = 'offline'
ABNORMAL = 'abnormal'
DEGRADED = 'degraded'
UNKNOWN = 'unknown'

ALL = (NORMAL, OFFLINE, ABNORMAL, DEGRADED)
ALL = (NORMAL, OFFLINE, ABNORMAL, DEGRADED, UNKNOWN)


class StoragePoolStatus(object):
Expand Down

0 comments on commit ccc0935

Please sign in to comment.