mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-24 01:23:45 +08:00
FW query: catch asserts from uds.py (#22456)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user