Skip to content

Commit 12c2834

Browse files
Ignore lines with "Received a response with unexpected ID".
1 parent 4605306 commit 12c2834

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyipmi/interfaces/ipmitool.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ def _parse_output(self, output):
116116
# Don't try to parse ipmitool error messages
117117
if 'failed' in line:
118118
continue
119+
# Don't try to parse spurious ipmitool output
120+
if 'Received a response with unexpected ID' in line:
121+
continue
119122

120123
# Check for timeout
121124
if self.re_timeout.match(line):

0 commit comments

Comments
 (0)