Skip to content

Commit

Permalink
Merge pull request #257 from truenas/NAS-127246-24.04-RC.1
Browse files Browse the repository at this point in the history
NAS-127246 / 24.04-RC.1 / Do not report `INCOMPATIBLE_FEAT` as unhealthy pool (by themylogin)
  • Loading branch information
yocalebo authored Feb 16, 2024
2 parents c5df32f + 4b355e4 commit 9c98bab
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 9c98bab

Please sign in to comment.