Skip to content

Commit

Permalink
Merge pull request #293 from truenas/NAS-132988
Browse files Browse the repository at this point in the history
NAS-132988 / 25.04 / Do not retrieve hidden zpool properties
  • Loading branch information
usaleem-ix authored Dec 12, 2024
2 parents 184a004 + 8c66fcc commit 81e902c
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 @@ -3127,7 +3127,7 @@ cdef class ZFSPool(object):
result = {}

with nogil:
libzfs.zprop_iter(self.__iterate_props, <void*>proptypes, True, True, zfs.ZFS_TYPE_POOL)
libzfs.zprop_iter(self.__iterate_props, <void*>proptypes, False, True, zfs.ZFS_TYPE_POOL)

for x in proptypes:
prop = ZPoolProperty.__new__(ZPoolProperty)
Expand Down

0 comments on commit 81e902c

Please sign in to comment.