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)
  • Loading branch information
themylogin authored and bugclerk committed Feb 16, 2024
1 parent c5df32f commit 4b355e4
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 4b355e4

Please sign in to comment.