2
0
mirror of https://opendev.org/x/pyghmi synced 2025-01-27 19:37:44 +00:00

Raise incurred exception if appropriate

While fetching eventlog, if a communication problem
occurs, the exception was ignored and code fell through
to unitialized variable.  Fix this by raising if not the
value known to be ignored.

Change-Id: I7785d0b3695abd84a8cac23059c031956877db58
This commit is contained in:
Jarrod Johnson 2016-05-25 16:49:07 -04:00
parent d672a82a19
commit b7a789b71b

View File

@ -515,6 +515,8 @@ class EventHandler(object):
except pygexc.IpmiException as pi:
if pi.ipmicode == 203:
break
else:
raise
curr = struct.unpack_from('<H', buffer(rsp['data'][:2]))[0]
targetlist.append(self._sel_decode(rsp['data'][2:]))
return endat