mirror of https://github.com/commaai/openpilot.git
FW query: catch asserts from uds.py (#22456)
old-commit-hash: 95957bc188
This commit is contained in:
parent
db7404fe8a
commit
82f0522647
|
@ -108,7 +108,12 @@ class IsoTpParallelQuery:
|
|||
break
|
||||
|
||||
for tx_addr, msg in msgs.items():
|
||||
dat: Optional[bytes] = msg.recv()
|
||||
try:
|
||||
dat: Optional[bytes] = msg.recv()
|
||||
except Exception:
|
||||
cloudlog.exception("Error processing UDS response")
|
||||
request_done[tx_addr] = True
|
||||
continue
|
||||
|
||||
if not dat:
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue