Update health_monitor.py

This commit is contained in:
MacRimi
2026-03-08 18:21:34 +01:00
parent 1ea28d66df
commit be2bfa0087

View File

@@ -1284,10 +1284,10 @@ class HealthMonitor:
else:
return {'status': 'OK'} # No VGs found, LVM not in use
return {'status': 'OK', 'volumes': len(volumes)}
return {'status': 'OK', 'volumes': len(volumes)}
except Exception:
return {'status': 'OK'}
except Exception:
return {'status': 'OK'}
def _get_physical_disks_list(self) -> List[Dict[str, Any]]:
"""Get list of all physical disks with their health status.