diff --git a/node-daemon/plugins/edac b/node-daemon/plugins/edac index edf1be8b..44e361eb 100644 --- a/node-daemon/plugins/edac +++ b/node-daemon/plugins/edac @@ -79,7 +79,7 @@ class MonitoringPluginScript(MonitoringPlugin): errors = list() for line in stdout.split('\n'): if match(r'^mc[0-9]: csrow', line): - if 'Corrected' not in line: + if 'Uncorrected' in line: health_delta = 10 errors.append(' '.join(line.split()[2:])) message += ', '.join(errors)