Ignore gopsutil host warnings

This commit is contained in:
Akbar Rifai 2022-05-13 19:48:12 +07:00
parent d3fc311d68
commit 7cb35f7f78

View File

@ -1,3 +1,4 @@
//go:build linux || darwin
// +build linux darwin
package devices
@ -15,7 +16,11 @@ func init() {
func getTemps(temps map[string]int) map[string]error {
sensors, err := host.SensorsTemperatures()
if err != nil {
return map[string]error{"gopsutil host": err}
if _, ok := err.(*host.Warnings); ok {
// ignore warnings
} else {
return map[string]error{"gopsutil host": err}
}
}
for _, sensor := range sensors {
label := sensorMap[sensor.SensorKey]