Ignore gopsutil host warnings
This commit is contained in:
parent
d3fc311d68
commit
7cb35f7f78
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue
Block a user