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
Signed-off-by: Aaron Hurst <[email protected]>
  • Loading branch information
ahurst-openai committed Jan 7, 2025
1 parent c9ceaa2 commit 7706601
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 7706601

Please sign in to comment.