Skip to content

Commit

Permalink
Do not report INCOMPATIBLE_FEAT as unhealthy pool
Browse files Browse the repository at this point in the history
(cherry picked from commit 05eff4e)
(cherry picked from commit 4b355e4)
(cherry picked from commit 1c97ea8)
  • Loading branch information
themylogin authored and bugclerk committed Feb 16, 2024
1 parent 57a4f75 commit 49e6454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libzfs.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2900,7 +2900,7 @@ cdef class ZFSPool(object):

property healthy:
def __get__(self):
return self.status_code in [PoolStatus.OK] + self.__warning_statuses()
return self.status_code in [PoolStatus.OK, PoolStatus.INCOMPATIBLE_FEAT] + self.__warning_statuses()

property warning:
def __get__(self):
Expand Down

0 comments on commit 49e6454

Please sign in to comment.