Skip to content

Commit

Permalink
Do not report INCOMPATIBLE_FEAT as unhealthy pool
Browse files Browse the repository at this point in the history
  • Loading branch information
themylogin committed Feb 16, 2024
1 parent 894b0ce commit 05eff4e
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 @@ -2909,7 +2909,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 05eff4e

Please sign in to comment.