Skip to content

Commit

Permalink
Merge pull request #769 from qinwang-murphy/add_storage_status
Browse files Browse the repository at this point in the history
Add storage status:degraded
  • Loading branch information
wisererik authored Nov 23, 2021
2 parents c05b49f + 7e48578 commit d67a1de
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 @@ -29,8 +29,9 @@ class StorageStatus(object):
NORMAL = 'normal'
OFFLINE = 'offline'
ABNORMAL = 'abnormal'
DEGRADED = 'degraded'

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


class StoragePoolStatus(object):
Expand Down

0 comments on commit d67a1de

Please sign in to comment.