Skip to content

Commit

Permalink
Ignore lines with "Received a response with unexpected ID".
Browse files Browse the repository at this point in the history
  • Loading branch information
ahurst-openai authored Jan 6, 2025
1 parent 4605306 commit 12c2834
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyipmi/interfaces/ipmitool.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ def _parse_output(self, output):
# Don't try to parse ipmitool error messages
if 'failed' in line:
continue
# Don't try to parse spurious ipmitool output
if 'Received a response with unexpected ID' in line:
continue

# Check for timeout
if self.re_timeout.match(line):
Expand Down

0 comments on commit 12c2834

Please sign in to comment.