Merge pull request #31 from badrabubker/master

No sensor state for PSU sensor on old BMC's
This commit is contained in:
Conrad Hoffmann 2019-10-01 14:45:01 +02:00 committed by GitHub
commit 3ec5c4f7f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ func freeipmiOutput(cmd string, target ipmiTarget, arg ...string) ([]byte, error
}
func ipmiMonitoringOutput(target ipmiTarget) ([]byte, error) {
return freeipmiOutput("ipmimonitoring", target, "-Q", "--comma-separated-output", "--no-header-output", "--sdr-cache-recreate")
return freeipmiOutput("ipmimonitoring", target, "-Q", "--ignore-unrecognized-events", "--comma-separated-output", "--no-header-output", "--sdr-cache-recreate")
}
func ipmiDCMIOutput(target ipmiTarget) ([]byte, error) {