Skip to content

Commit

Permalink
fix(client): do not fail on error in packet processing
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrand committed Jan 5, 2021
1 parent e9afc26 commit 8fe0203
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/mdns_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ async def process_waiting_data(self) -> None:
try:
await self.process_packet(buffer)
except Exception as e:
raise e
self.dprint("Issue processing packet: {}".format(e))
finally:
gc.collect()
Expand Down

0 comments on commit 8fe0203

Please sign in to comment.