We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4605306 commit 12c2834Copy full SHA for 12c2834
pyipmi/interfaces/ipmitool.py
@@ -116,6 +116,9 @@ def _parse_output(self, output):
116
# Don't try to parse ipmitool error messages
117
if 'failed' in line:
118
continue
119
+ # Don't try to parse spurious ipmitool output
120
+ if 'Received a response with unexpected ID' in line:
121
+ continue
122
123
# Check for timeout
124
if self.re_timeout.match(line):
0 commit comments