Skip to content

Commit

Permalink
fix(vecu): Die on error
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinandjarisch committed Jan 3, 2024
1 parent b430cd9 commit 699f824
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gallia/services/uds/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@ async def handle_client(
await writer.drain()
except Exception:
traceback.print_exc()
break

logger.info("Connection closed")
logger.info(
Expand Down Expand Up @@ -899,6 +900,7 @@ async def run(self) -> None:
await transport.write(uds_response_raw)
except Exception:
traceback.print_exc()
break


class UnixUDSServerTransport(TCPUDSServerTransport):
Expand Down

0 comments on commit 699f824

Please sign in to comment.