diff --git a/check_zfs_zpool.py b/check_zfs_zpool.py index 90532de..6fa9a79 100755 --- a/check_zfs_zpool.py +++ b/check_zfs_zpool.py @@ -101,7 +101,7 @@ def get_vdev_info(zpool: str, vdev_type: str): for line in list(filter(None, output_zpool_logs.split('\n'))): data = list(filter(None, clean_device_list(line).split(' '))) zpool_vdev_devices.append({ - 'pool': False # not (is_dash(data[2]) and is_dash(data[3]) and is_dash(data[6]) and is_dash(data[7])), + 'pool': False, # not (is_dash(data[2]) and is_dash(data[3]) and is_dash(data[6]) and is_dash(data[7])), # TODO: better pool detection 'device': data[0],