Skip to content

Commit

Permalink
Merge pull request #258 from truenas/NAS-127246-23.10.2
Browse files Browse the repository at this point in the history
NAS-127246 / 23.10.2 / Do not report `INCOMPATIBLE_FEAT` as unhealthy pool (by themylogin) (by bugclerk)
  • Loading branch information
yocalebo authored Feb 16, 2024
2 parents 57a4f75 + 1c97ea8 commit e2cba78
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 e2cba78

Please sign in to comment.